Add Likes in Post component

This commit is contained in:
riggraz
2019-09-30 16:54:37 +02:00
parent dfee92da9c
commit 84263b9d33
15 changed files with 293 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
interface ILike {
id: number;
fullName: string;
email: string;
}
export default ILike;

View File

@@ -0,0 +1,9 @@
interface ILikeJSON {
id: number;
user_id: number;
post_id: number;
full_name: string;
email: string;
}
export default ILikeJSON;