mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
13 lines
325 B
TypeScript
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;
|