diff --git a/example/src/App.tsx b/example/src/App.tsx index 5a95384..f90ce12 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -43,7 +43,7 @@ export default function App() { Example Five - + SheetJS Example diff --git a/example/src/BasicExample.tsx b/example/src/BasicExample.tsx index af4f8ec..663ef4f 100644 --- a/example/src/BasicExample.tsx +++ b/example/src/BasicExample.tsx @@ -8,42 +8,35 @@ export const BasicExample = () => { ['GeorgeW Bush', '43'], ['Barack Obama', '44'], ['Donald Trump', '45'], - ['Joseph Biden', '46'] + ['Joseph Biden', '46'], ]; return ( - - + +
); -} +}; const styles = StyleSheet.create({ container: { flex: 1, padding: 16, paddingTop: 30, - backgroundColor: '#fff' + backgroundColor: '#fff', }, head: { height: 44, - backgroundColor: '#C6F3E0' + backgroundColor: '#C6F3E0', }, text: { textAlign: 'center', - padding: 5 + padding: 5, }, headText: { textAlign: 'center', - fontWeight: 'bold' - } -}); \ No newline at end of file + fontWeight: 'bold', + }, +});