-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
import { View } from 'react-native'; | ||
|
||
const FallbackView = () => { | ||
|
||
return( | ||
<View style={{ height: 800, width: 400, backgroundColor: 'red' }} /> | ||
) | ||
} | ||
const FallbackView = () => ( | ||
<View style={{ height: 800, width: 400, backgroundColor: 'red' }} /> | ||
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
Check failure on line 4 in react/features/base/media/components/native/FallbackView.tsx GitHub Actions / Lint
|
||
) | ||
|
||
export default FallbackView; |