UNPKG

@wq/material-web

Version:

Web bindings for @wq/material

19 lines (16 loc) 414 B
import React from "react"; import { Field } from "formik"; import HelperText from "./HelperText.js"; import PropTypes from "prop-types"; export default function Hidden(props) { return ( <> <Field {...props} type="hidden" /> <HelperText name={props.name} hint={props.hint} /> </> ); } Hidden.propTypes = { name: PropTypes.string, hint: PropTypes.string, };