export interface Props { className?: string, children?: any } const Form = ({ children, className }: Props): JSX.Element => (
{children}
); export default Form