aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/react-small-apps/apps/notebook/src/config/pages.js
blob: 0836abab411a4636e6d259b78985f415ab292ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const defaultPages = [
  {
    id: null,
    body: "",
    title: "Page not found",
    url: "/404",
  },
  {
    id: 0,
    body: "",
    title: "My Notebook",
    url: "/",
  },
];

export { defaultPages };