funktioniert mit actual strapi JSON layout

This commit is contained in:
dhain 2022-09-27 10:44:27 +02:00
parent 5453691016
commit fe1d24a23e
3 changed files with 67 additions and 60 deletions

View file

@ -1,6 +1,11 @@
export interface Note {
id: number;
attributes: Attribute;
}
export interface Attribute {
title: string;
content: string;
lastOpened: string;
lastViewed: Date;
}