This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-admin/components/common/Form/FormWrapper/FormWrapper.tsx

6 lines
183 B
TypeScript
Raw Normal View History

import styles from '../Form.module.scss';
export const FormWrapper = ({ children }: { children: React.ReactNode }) => {
return <div className={styles.wrapper}>{children}</div>;
};