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.

6 lines
189 B
TypeScript
Raw Normal View History

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