export interface NotesType {
  id: number;
  color?: string;
  title?: string;
  datef?: string;
  deleted: boolean;
}
