changes: api integration,

components, styles, fontawesome icons added
This commit is contained in:
2024-04-26 02:32:27 +05:30
parent edd2798581
commit 5c04faad2a
40 changed files with 346 additions and 265 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface IPost{
postId: number;
slug: string;
title: string;
description: string;
category: string;
postUrl: string;
likes: number;
views: number;
comments: number;
}