import type React from 'react'; import { Loading } from '@components/generic/Loading'; export interface FormProps { loading?: boolean; children: React.ReactNode; } export const Form = ({ loading, children }: FormProps): JSX.Element => { return (
); };