Created
November 9, 2020 12:47
-
-
Save vsecoder-old-account/71d9496f92699b5d58e868aeba192f38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// импортируем библиотеки | |
import React from 'react'; | |
import { View, Text, Image, ScrollView, TextInput } from 'react-native'; | |
// тут будет код похожий на html | |
const App = () => { | |
return ( | |
<Text>Hello, World!</Text> | |
); | |
}; | |
// | |
// можно писать код JS | |
// | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment