diff --git a/src/App.tsx b/src/App.tsx index abf28bb..6b95688 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,26 +11,15 @@ import React from 'react'; import {SafeAreaView, StatusBar} from 'react-native'; import Deck from './components/Deck'; -import DeckButton from './components/DeckButton'; - declare const global: {HermesInternal: null | {}}; -const App = () => { - const buttons = []; - - for (let i = 0; i < 21; i++) { - let text = 'btn' + i; - buttons.push(); - } - +export default function App() { return ( <>