project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
@@ -0,0 +1,25 @@
import { View } from "react-native";
import { Button } from "@/components/ui/Button";
interface AdminControlsProps {
onAddAdmin: () => void;
}
export const AdminControls = ({
onAddAdmin,
}: AdminControlsProps) => {
return (
<View className="flex-row">
<Button
onPress={onAddAdmin}
icon="account-plus-outline"
buttonColor="#6750a4"
buttonTextColor="white"
disabled={false}
>
Add Admin
</Button>
</View>
);
};