Files
the-biergarten-app/components/ui/forms/FormSegment.tsx
2023-01-23 20:13:25 -05:00

13 lines
325 B
TypeScript

import { FunctionComponent } from 'react';
/** A container for both the form error and form label. */
interface FormInfoProps {
children: Array<JSX.Element> | JSX.Element;
}
const FormSegment: FunctionComponent<FormInfoProps> = ({ children }) => (
<div className="mb-2">{children}</div>
);
export default FormSegment;