Files
the-biergarten-app/src/components/ui/forms/FormSegment.tsx
2023-04-11 23:32:06 -04: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;