Basic comments visualisation

This commit is contained in:
riggraz
2019-09-17 17:04:19 +02:00
parent 476f720119
commit 0c0c6d4e30
9 changed files with 114 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
interface IComment {
id: number;
body: string;
parentId: number;
userFullName: string;
updatedAt: string;
}

View File

@@ -1,6 +1,7 @@
interface ICommentJSON {
id: number;
body: string;
parent_id: number;
user_full_name: string;
updated_at: string;
}