initial commit

master
gorky1234 2 years ago
parent 0e5ba24c81
commit 42b8756e8c

@ -1,10 +1,11 @@
import { StatusBar } from 'expo-status-bar'; import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native'; import { StyleSheet, Text, View } from 'react-native';
import ArtistView from 'componente/ArtistView';
export default function App() { export default function App() {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text> <ArtistView></ArtistView>
<StatusBar style="auto" /> <StatusBar style="auto" />
</View> </View>
); );

@ -0,0 +1,9 @@
import {Text} from "react-native";
export default function ArtistView() {
return (
<View>
<Text>bonjour</Text>
</View>
)
}

21072
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -9,8 +9,11 @@
"web": "expo start --web" "web": "expo start --web"
}, },
"dependencies": { "dependencies": {
"expo": "~47.0.12", "@expo/ngrok": "^4.1.0",
"expo": "^47.0.13",
"expo-cli": "^6.3.1",
"expo-status-bar": "~1.4.2", "expo-status-bar": "~1.4.2",
"fs-promise": "^2.0.3",
"react": "18.1.0", "react": "18.1.0",
"react-native": "0.70.5" "react-native": "0.70.5"
}, },

Loading…
Cancel
Save