Sha256: 766c91d28a253d478e5fd35c30668cfc4b7cfa91e88da80cb96c00e432de6d77
Contents?: true
Size: 955 Bytes
Versions: 24
Compression:
Stored size: 955 Bytes
Contents
import React from 'react' import { Button, FormGroup, TextInput } from '../../' const FormGroupFullWidth = (props) => ( <div> <div> <FormGroup fullWidth> <TextInput label="First Name" placeholder="Enter First Name" {...props} /> <TextInput label="Middle Intial" placeholder="Enter Middle Initial" {...props} /> <TextInput label="Last Name" placeholder="Enter Last Name" {...props} /> </FormGroup> </div> <br /> <div> <FormGroup fullWidth> <TextInput placeholder="Search" {...props} /> <Button onClick={() => alert('Button Clicked!')} text="Submit" variant="secondary" {...props} /> </FormGroup> </div> </div> ) export default FormGroupFullWidth
Version data entries
24 entries across 24 versions & 1 rubygems