Created
November 9, 2020 12:45
-
-
Save vsecoder-old-account/422e8a486fba9dafac3f23ca3332fe5e 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 | |
export default function App() { | |
return ( | |
<Text>Hello, World!</Text> | |
); | |
}; | |
// | |
// можно писать код JS | |
// |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment