import React, { FC } from 'react'; import DropDownChild from './DropDownChild'; interface Props { link: any; } const SideMenuDropDown: FC = props => { const { link } = props; return ( ); }; export default SideMenuDropDown;