You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { createApp, createIndex } from "@misk/core"
import * as Ducks from "./ducks"
import routes from "./routes"
export * from "./components"
export * from "./containers"
createIndex("home", createApp(routes), Ducks)
Want to get rid of manual setting of "home" which is prone to being forgotten if tab is renamed.
import { createApp, createIndex } from "@misk/core"
import miskTab from "../miskTab"
import * as Ducks from "./ducks"
import routes from "./routes"
export * from "./components"
export * from "./containers"
createIndex(miskTab.slug, createApp(routes), Ducks)
Challenges
Difficult / impossible to read a file from outside of src/ in past experience
The text was updated successfully, but these errors were encountered:
Currently
Want to get rid of manual setting of
"home"
which is prone to being forgotten if tab is renamed.Challenges
src/
in past experienceThe text was updated successfully, but these errors were encountered: