refactoring

This commit is contained in:
2024-04-17 17:50:31 +05:00
parent ecba8be306
commit c92fabce9c
13 changed files with 198 additions and 158 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Tab } from "../types/tab";
const tabs: Tab[] = [
{
value: "Masterplan",
id: "1",
count: 0,
},
{
value: "Search",
id: "2",
count: 0,
},
{
value: "Favorites",
id: "3",
count: 3,
},
{
value: "Company",
id: "4",
count: 0,
},
];
export { tabs };