wix-style-react
Version:
17 lines (15 loc) • 399 B
JavaScript
import React from 'react';
import Box from '../../Box';
import FormField from '../../FormField';
import Input from '../../Input';
export default () => (
<Box direction="vertical" width={'50%'}>
<FormField label="Plan name">
<Input
status="error"
placeholder="e.g., Silver Membership"
statusMessage="This field is mandatory"
/>
</FormField>
</Box>
);