7 | I'm only on web devices :)
8 |
9 | This is just an old fashioned div with some crazy css
10 |
11 |
12 | );
13 | }
14 |
15 | const styles = StyleSheet.create({
16 | container: {
17 | backgroundColor: '#EDEDED',
18 | padding: 10,
19 | },
20 | });
21 |
--------------------------------------------------------------------------------
/dist/template/src/App.tsx:
--------------------------------------------------------------------------------
1 | import { useState } from 'react';
2 | import {
3 | View,
4 | Text,
5 | StyleSheet,
6 | useWindowDimensions,
7 | TouchableHighlight,
8 | StatusBar,
9 | } from 'react-native';
10 |
11 | import AbstractionExample from './AbstractionExample';
12 |
13 | export default function App() {
14 | const { width } = useWindowDimensions();
15 | const [backgroundColor, setState] = useState