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/Modal/ModalBody/ModalBody.tsx

6 lines
189 B
TypeScript
Raw Normal View History

2022-08-30 18:08:54 +00:00
import styles from '../Modal/Modal.module.scss';
export default function ModalBody({ children }: { children: React.ReactNode }) {
2022-08-30 18:08:54 +00:00
return <div className={styles.body}>{children}</div>;
}