diff options
Diffstat (limited to 'public/projects/react-small-apps/apps/notebook/src/config/pages.js')
| -rw-r--r-- | public/projects/react-small-apps/apps/notebook/src/config/pages.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/public/projects/react-small-apps/apps/notebook/src/config/pages.js b/public/projects/react-small-apps/apps/notebook/src/config/pages.js new file mode 100644 index 0000000..0836aba --- /dev/null +++ b/public/projects/react-small-apps/apps/notebook/src/config/pages.js @@ -0,0 +1,16 @@ +const defaultPages = [ + { + id: null, + body: "", + title: "Page not found", + url: "/404", + }, + { + id: 0, + body: "", + title: "My Notebook", + url: "/", + }, +]; + +export { defaultPages }; |
