File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
docusaurus/docs/reactnative/guides Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -644,7 +644,9 @@ import { createStackNavigator } from '@react-navigation/stack';
644644// ... rest of the components
645645
646646// highlight-start
647- const LoadingIndicator = () => { /* some LoadingIndicator logic here */ }
647+ const LoadingIndicator = () => {
648+ /* some LoadingIndicator logic here */
649+ };
648650
649651const MyItem = ({ item }) => {
650652 const { answer_text, user } = item ;
@@ -679,11 +681,7 @@ const PollAnswersScreen = ({
679681 <SafeAreaView style = { { flex: 1 }} >
680682 <PollModalHeader title = { ' All Poll Answers' } onPress = { () => navigation .goBack ()} />
681683 // highlight-start
682- <PollAnswersList
683- message = { message }
684- poll = { poll }
685- PollAnswersListContent = { MyPollAnswersContent }
686- />
684+ <PollAnswersList message = { message } poll = { poll } PollAnswersListContent = { MyPollAnswersContent } />
687685 // highlight-end
688686 </SafeAreaView >
689687 );
You can’t perform that action at this time.
0 commit comments