Kea
// ๐ฆ Here is a complete example with all the options available.const githubSearchLogic = kea<githubSearchLogicType>({ // core concepts// ๐ฆพ everything starts with an actionactions: { },// ๐จ actions trigger listenerslisteners: { },// ๐ฆ actions modify values stored in reducersreducers: { },// ๐จโ๐ฉโ๐งโ๐ฆ selectors compute and memoize valuesselectors: { }, // additional concepts // connections, inheritance and extensions // plugins})