finished the category screen

This commit is contained in:
Aria Moradi
2021-02-20 01:23:52 +03:30
parent 5a9d216fb7
commit f1cc37d0db
17 changed files with 516 additions and 41 deletions

View File

@@ -38,3 +38,10 @@ interface IChapter {
mangaId: number
pageCount: number
}
interface ICategory {
id: number
order: number
name: String
isLanding: boolean
}