21 lines
397 B
JavaScript
21 lines
397 B
JavaScript
export const DEFAULT_PAGES_OBJECT = {
|
|
main: {
|
|
_props: {},
|
|
_screens: {},
|
|
index: {
|
|
_component: "./components/indexHtml",
|
|
},
|
|
appBody: "bbapp.main.json",
|
|
},
|
|
unauthenticated: {
|
|
_props: {},
|
|
_screens: {},
|
|
index: {
|
|
_component: "./components/indexHtml",
|
|
},
|
|
appBody: "bbapp.unauthenticated.json",
|
|
},
|
|
componentLibraries: [],
|
|
stylesheets: [],
|
|
}
|