File tree 2 files changed +7
-2
lines changed
demos/react-native-supabase-todolist/app/views/todos
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 1
1
import * as React from 'react' ;
2
2
import { StatusBar } from 'expo-status-bar' ;
3
3
import { ScrollView , View } from 'react-native' ;
4
- import { FAB } from 'react-native-elements' ;
4
+ import { FAB , Text } from 'react-native-elements' ;
5
5
import prompt from 'react-native-prompt-android' ;
6
6
7
7
import { router , Stack } from 'expo-router' ;
@@ -79,7 +79,7 @@ const ListsViewWidget: React.FC = () => {
79
79
/>
80
80
< ScrollView key = { 'lists' } style = { { maxHeight : '90%' } } >
81
81
{ ! status . hasSynced ? (
82
- < p > Busy with sync...</ p >
82
+ < Text > Busy with sync...</ Text >
83
83
) : (
84
84
listRecords . map ( ( r ) => (
85
85
< ListItemWidget
You can’t perform that action at this time.
0 commit comments