move store in local storage

This commit is contained in:
Thomas Ruoff
2021-03-10 23:53:35 +01:00
parent eaba68a779
commit 1633fad10b
13 changed files with 5414 additions and 193 deletions

6
interfaces/IStoreItem.ts Normal file
View File

@@ -0,0 +1,6 @@
import { IDocProps } from './IDocProps'
export interface IStoreItem extends IDocProps {
id: string
created: Date
}