Skip to content

Instantly share code, notes, and snippets.

View jai-adapptor's full-sized avatar

Jai Keery jai-adapptor

  • Adapptor
View GitHub Profile
@jai-adapptor
jai-adapptor / index.tsx
Last active July 25, 2022 13:51
Add new components to index.tsx
import Sheet from './components/Sheet';
import MainContent from './components/MainContent';
import ExampleComponent from './components/ExampleComponent';
function App() {
return (
<View style={{ flex: 1 }}>
<MainContent />
<Sheet>
<ExampleComponent style={{ height: 60, marginBottom: 10 }} />