import { StyleSheet, Text, View } from 'react-native'; export default function Example(props) { return ( {props.title} {props.children} ); } const styles = StyleSheet.create({ root: { height: '100vh' }, header: { paddingVertical: '1em', borderBottomColor: '#ccc', borderBottomWidth: 1 }, title: { fontSize: 18, fontWeight: 'bold', textAlign: 'center' }, back: { position: 'absolute', height: '100%', display: 'flex', padding: 10, left: 0, top: 0, width: 40, alignItems: 'center' }, container: { alignItems: 'center', flex: 1, overflowY: 'scroll' } });