import { FC } from "react"; import Text from "../../../Styled/Text"; interface ErrorComponentProps { children: React.ReactNode; } const ErrorComponent: FC = ({ children }) => { return ( {children} ); }; export default ErrorComponent;