Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created June 30, 2020 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nazrdogan/b6d48979a875b8e6369917b29678c8f7 to your computer and use it in GitHub Desktop.
Save nazrdogan/b6d48979a875b8e6369917b29678c8f7 to your computer and use it in GitHub Desktop.
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