Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. const InputField = ({
  2. label,
  3. ...others
  4. }) => {
  5. const classes = useStyles();
  6. return (
  7. <div className={classes.root}>
  8. <FormControl className={classes.margin}>
  9. <InputLabel className={classes.label} shrink htmlFor="bootstrap-input">
  10. {label}
  11. </InputLabel>
  12. <BootstrapInput {...others} />
  13. </FormControl>
  14. </div>
  15. )
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement