Add type to controls and change colour types

This commit is contained in:
Mitchell McCaffrey
2021-07-09 22:06:32 +10:00
parent 72b6994a2e
commit 49b8caa2d7
21 changed files with 238 additions and 148 deletions

View File

@@ -1,6 +1,8 @@
import { Color } from "../helpers/colors";
export type Note = {
id: string;
color: string;
color: Color;
lastModified: number;
lastModifiedBy: string;
locked: boolean;