Created
June 30, 2020 00:28
-
-
Save nazrdogan/16888091850e2144f6c8b119f56536c4 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