Advertisement
Miksus

projekt

Jun 24th, 2025 (edited)
344
0
6 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.29 KB | None | 0 0
  1. import React from 'react';
  2. import { View, Text, Button } from 'react-native';
  3.  
  4. export default function App() {
  5.   return (
  6.     <View style={{ padding: 20 }}>
  7.       <Text>Hello from React Native!</Text>
  8.       <Button title="Click me" onPress={() => alert('Clicked!')} />
  9.     </View>
  10.   );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement