UI data binding changes

This commit is contained in:
2024-04-28 13:31:31 +05:30
parent 5c04faad2a
commit ad3df7c6b5
15 changed files with 106 additions and 417 deletions
+5
View File
@@ -0,0 +1,5 @@
import { IPost } from "../models/post.model";
export interface IBlog{
posts: IPost[];
}