import React from 'react'; import { Box, Container, Heading } from "@chakra-ui/react"; export const FormContainer = ({ children, title, }: { children: React.ReactNode; title: string; }) => { return ( {title} {/* @ts-ignore */} {children} ); };