import { PropTypes } from "prop-types"; import clsx from "clsx"; function FormBox({ title, children, alt = false }) { return (
{children}
); } FormBox.propTypes = { children: PropTypes.node.isRequired, title: PropTypes.string.isRequired, alt: PropTypes.bool, }; export default FormBox;