mattybojo / home-upkeep

0 stars 0 forks source link

New page: Notes #41

Open mattybojo opened 4 months ago

mattybojo commented 4 months ago

Create a new page that allows the user to create notes.

Each note will have a title, body, and permissions (can be shared with group or visible only to individual user).

Initial idea: Notes will have a list of titles that are shown in a left-side column with the body of the note willing the remaining space.

interface Note { title: string; body: string; sharedWith: string[]; }