import React from 'react'; import Portal from '../Portal'; import { Slide, Container } from './styled'; type Props = { anchor?: 'left' | 'top' | 'right' |'bottom'; children: React.ReactNode; open: boolean; }; const Drawer: React.FunctionComponent = ({ anchor = 'bottom', children, open, }: Props) => ( {children} ); export default Drawer;