// Import the tags needed to build the app.
import * as React from 'react' ;
...
export default function App() {
return (
// Add tags for the visible parts.
<ScrollView>...
);
}
const styles = StyleSheet.create({
// Style the color, text, and dimensions.
container: {
backgroundColor: 'cadetblue',
...
}
});
/