const YourComponent: React.FC = () => {
const ref = useRef(null)
const reload = () => {
ref.current?.load()
}
return (
<View>
<Button title="reload" onPress={reload}/>
<AdropBanner
ref={ref}
unitId={unitId}
style={{
width: Dimensions.get('window').width,
height: 80
}}
/>
</View>
)
}