1import { StyleSheet, Text, View } from 'react-native';
2
3import * as <%- project.name %> from '<%- project.slug %>';
4
5export default function App() {
6  return (
7    <View style={styles.container}>
8      <Text>{<%- project.name %>.hello()}</Text>
9    </View>
10  );
11}
12
13const styles = StyleSheet.create({
14  container: {
15    flex: 1,
16    backgroundColor: '#fff',
17    alignItems: 'center',
18    justifyContent: 'center',
19  },
20});
21