feat: add Data Cards feature with CRUD operations and UI integration
This commit is contained in:
@@ -2,6 +2,7 @@ import { StatusBar } from "expo-status-bar";
|
||||
import { StyleSheet, View } from "react-native";
|
||||
import { BottomNav } from "./src/components/BottomNav";
|
||||
import { NotFoundPage } from "./src/pages/NotFound";
|
||||
import { DataCardsPage } from "./src/pages/datacards";
|
||||
import { ImagePage } from "./src/pages/image";
|
||||
import { IndexPage } from "./src/pages/index";
|
||||
import { TextPage } from "./src/pages/text";
|
||||
@@ -16,6 +17,7 @@ const TABS: Tab[] = [
|
||||
{ label: "Home", route: "home", page: IndexPage },
|
||||
{ label: "Text", route: "text", page: TextPage, hideInNav: true },
|
||||
{ label: "Image", route: "image", page: ImagePage, hideInNav: true },
|
||||
{ label: "Data Cards", route: "datacards", page: DataCardsPage, hideInNav: true },
|
||||
];
|
||||
export { TABS, type Tab };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user