import { Button, SafeAreaView, ScrollView, Text, View } from 'react-native';
export default function App() {
return (
Module API Example
);
}
function Group(props: { name: string; children: React.ReactNode }) {
return (
{props.name}
{props.children}
);
}
const styles = {
header: { fontSize: 30, margin: 20 },
groupHeader: { fontSize: 20, marginBottom: 20 },
group: { margin: 20, backgroundColor: '#fff', borderRadius: 10, padding: 20 },
container: { flex: 1, backgroundColor: '#eee' },
view: { flex: 1, height: 200 },
};