diff --git a/daily-thought-frontend/src/types/comment.ts b/daily-thought-frontend/src/types/comment.ts new file mode 100644 index 0000000000000000000000000000000000000000..b4cd0f7a95518deb6f9dfc191fddac1d7cd1bd30 --- /dev/null +++ b/daily-thought-frontend/src/types/comment.ts @@ -0,0 +1,7 @@ +import { User } from "./user" + +export type Comment = { + Data: string, + User: User, + Likes: User[] +} \ No newline at end of file