User & Admin Layout - app/(application)/(user)/home.tsx - app/(application)/admin/_layout.tsx Components - components/Drawer/NavbarMenu.tsx - components/index.ts Docs - docs/prompt-for-qwen-code.md Backup Component - components/Drawer/NavbarMenu.back.tsx New Components - components/Drawer/NavbarMenu_V2.tsx - components/_ShareComponent/BasicWrapper.tsx New Admin Screen - screens/Admin/listPageAdmin_V2.tsx ### No Issue
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
import { MainColor } from "@/constants/color-palet";
|
|
import { View } from "react-native";
|
|
|
|
export default function BasicWrapper({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<View style={{ flex: 1, backgroundColor: MainColor.darkblue }}>
|
|
{children}
|
|
</View>
|
|
</>
|
|
);
|
|
}
|