export const WithKeyboardAware = () => (
<Form>
<Box display="flex" flexDirection="column" gap={12}>
<RNTextInput placeholder="Prénom" style={inputStyle} />
<RNTextInput placeholder="Email" keyboardType="email-address" style={inputStyle} />
</Box>
</Form>
);