diff --git a/client/src/components/Modal.tsx b/client/src/components/Modal.tsx index 002f9be..f99591c 100644 --- a/client/src/components/Modal.tsx +++ b/client/src/components/Modal.tsx @@ -1,15 +1,15 @@ -import { ReactNode } from 'react'; +import { ReactNode } from "react"; -const Modal = ({ children, show }: { children: ReactNode; show: boolean }) => { +const Modal = ({ children, show, className = '' }: { children: ReactNode; show: boolean, className?: string }) => { return (