1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import React from 'react' import {Text, View} from 'react-native' export function ClipClopGate() { return ( <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center', gap: 20, }}> <Text style={{fontSize: 50}}>🐴</Text> <Text style={{textAlign: 'center'}}>Nice try</Text> </View> ) }