import * as PropTypes from 'prop-types'; import * as React from 'react'; const contextTypes = { $adminlte_layout: PropTypes.shape({ toggleMainSidebar: PropTypes.func, }), }; const SidebarToggle: React.StatelessComponent<{}> = (undefined, context) => ( Toggle navigation ); SidebarToggle.contextTypes = contextTypes; export default SidebarToggle;