import React from 'react'; import { Alert, Text, View } from 'react-native'; import SwipeButton from '../src/SwipeButton'; const App = () => { return ( X} onComplete={() => Alert.alert('Completed')} title="Swipe to complete" /> ); }; export default App;