import React from 'react'; export interface ModalProps { children?: JSX.Element | JSX.Element[] | string | null; } export const Modal = ({ children }: ModalProps): JSX.Element => { return (
{children}
); };