Files
2025-02-06 20:33:26 +02:00

15 lines
442 B
TypeScript

import DrugList from "@/components/DrugList";
import Form from "@/components/Form";
import { Link } from "expo-router";
import { Dimensions, Text, View } from "react-native";
import { useTheme } from "react-native-paper";
export default function Add() {
const theme = useTheme();
return (
<View style={{width: "100%", backgroundColor:theme.colors.surface, height: Dimensions.get('window').height}}>
<Form />
</View>
);
}