Nov 28, 2023
you are missing a "return'", it should be:
```
return <Suspense fallback={<ActivityIndicator />}>
<ComplexComponent {...props} />
</Suspense>;
```
you are missing a "return'", it should be:
```
return <Suspense fallback={<ActivityIndicator />}>
<ComplexComponent {...props} />
</Suspense>;
```