Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import React from 'react';
- import { View, Text, Button } from 'react-native';
- export default function App() {
- return (
- <View style={{ padding: 20 }}>
- <Text>Hello from React Native!</Text>
- <Button title="Click me" onPress={() => alert('Clicked!')} />
- </View>
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement