feat: tab-bar

This commit is contained in:
2024-07-22 01:26:19 +03:00
parent 7904abd782
commit 9973637a92
11 changed files with 81 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
export interface ITab {
link: string;
line_icon: string;
name: string;
active: boolean;
}