Changed date_created format to Date from String

This commit is contained in:
Keannu Christian Bernasol 2023-03-04 17:18:43 +08:00
parent b3653f5a01
commit e6b07438d4
3 changed files with 5 additions and 3 deletions

View file

@ -19,7 +19,7 @@ export interface NoteProps {
title: string;
content: string;
id: number;
date_created: string;
date_created: Date;
owner: string;
}