import React, { FC } from 'react'; import ResponsiveDrawer, { ResponsiveDrawerProps } from 'components/ResponsiveDrawer'; import ServerDrawerSection from './sections/ServerDrawerSection'; import DevicesDrawerSection from './sections/DevicesDrawerSection'; import LiveTvDrawerSection from './sections/LiveTvDrawerSection'; import AdvancedDrawerSection from './sections/AdvancedDrawerSection'; import PluginDrawerSection from './sections/PluginDrawerSection'; const AppDrawer: FC = ({ open = false, onClose, onOpen }) => ( ); export default AppDrawer;