File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
demos/react-native-supabase-todolist/app/views/todos Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " react-native-supabase-todolist " : patch
3+ ---
4+
5+ Using <Text > instead of <p > in react native HTML
Original file line number Diff line number Diff line change 11import * as React from 'react' ;
22import { StatusBar } from 'expo-status-bar' ;
33import { ScrollView , View } from 'react-native' ;
4- import { FAB } from 'react-native-elements' ;
4+ import { FAB , Text } from 'react-native-elements' ;
55import prompt from 'react-native-prompt-android' ;
66
77import { router , Stack } from 'expo-router' ;
@@ -79,7 +79,7 @@ const ListsViewWidget: React.FC = () => {
7979 />
8080 < ScrollView key = { 'lists' } style = { { maxHeight : '90%' } } >
8181 { ! status . hasSynced ? (
82- < p > Busy with sync...</ p >
82+ < Text > Busy with sync...</ Text >
8383 ) : (
8484 listRecords . map ( ( r ) => (
8585 < ListItemWidget
You can’t perform that action at this time.
0 commit comments