forked from
jollywhoppers.com/witchsky.app
fork
Configure Feed
Select the types of activity you want to include in your feed.
Bluesky app fork with some witchin' additions 馃挮
fork
Configure Feed
Select the types of activity you want to include in your feed.
1import {useEffect} from 'react'
2import * as SplashScreen from 'expo-splash-screen'
3
4type Props = {
5 isReady: boolean
6}
7
8export function Splash({isReady, children}: React.PropsWithChildren<Props>) {
9 useEffect(() => {
10 if (isReady) {
11 SplashScreen.hideAsync()
12 }
13 }, [isReady])
14 if (isReady) {
15 return children
16 }
17}