Created
June 30, 2020 00:28
-
-
Save nazrdogan/b6d48979a875b8e6369917b29678c8f7 to your computer and use it in GitHub Desktop.
This file contains 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 { AppRegistry, View, Text, Button } from 'react-native'; | |
import React from 'react'; | |
const AppClip = () => ( | |
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}> | |
<Text style={{ fontSize: 22 }}> | |
React Native App Clip | |
</Text> | |
<Button | |
title="Learn More" | |
color="#841584" | |
/> | |
</View> | |
); | |
AppRegistry.registerComponent('AppClip', () => AppClip); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment