Use 'state' and 'actions'
// File: /packages/my-first-theme/src/index.js
import Root from "./components"
const myFirstTheme = {
name: "my-first-theme",
roots: {
theme: Root,
},
state: {
theme: {
isUrlVisible: false,
},
},
actions: {
theme: {},
},
}
export default myFirstThemeLast updated