UNPKG

@applicaster/zapp-react-native-ui-components

Version:

Applicaster Zapp React Native ui components for the Quick Brick App

15 lines (11 loc) 247 B
import React, { useEffect } from "react"; import { View } from "react-native"; type Props = { onLoadFinished: () => void; }; export function Hero(props: Props) { useEffect(() => { props?.onLoadFinished(); }, []); return <View />; }