import React from 'react'; import Portal from '../Portal'; import { Container, Blanket, Content } from './styled'; type Props = { children: React.ReactNode; hideBackdrop?: boolean; }; const Modal: React.FC = ({ children, hideBackdrop = false }: Props) => ( {hideBackdrop ? null : } {children} ); export default Modal;