import {Drawer, DrawerProps} from "antd"; import React, {FC} from "react"; import "./Drawer.scss"; export interface StarshipDrawerProps {} //Partial<{ styleType: StyleType }>; const StarshipDrawer: FC = props => { const {className, ...DrawerProp} = props; return ( ); }; export default StarshipDrawer;