notes search
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import shortid from 'shortid'
|
||||
|
||||
export const defaultNotes: BaseNote[] = [
|
||||
{
|
||||
isRoot: true,
|
||||
@@ -8,13 +10,14 @@ export const defaultNotes: BaseNote[] = [
|
||||
* Click on **Mindmap mode** in the menu left to visualize your notes
|
||||
\n
|
||||
Let's get started!`,
|
||||
created: 0,
|
||||
modified: 0,
|
||||
},
|
||||
{
|
||||
title: 'brackets',
|
||||
content: `If you type square brackets around text a link is created automatically. Like magic!`,
|
||||
created: 0,
|
||||
modified: 0,
|
||||
},
|
||||
]
|
||||
].map((note) => ({
|
||||
id: shortid.generate(),
|
||||
created: new Date().getTime(),
|
||||
modified: new Date().getTime(),
|
||||
...note,
|
||||
}))
|
||||
|
||||
Reference in New Issue
Block a user