import React from 'react'; import { gettext, siteRoot } from '../utils/constants'; import ModalPortal from './modal-portal'; import AboutDialog from './dialog/about-dialog'; class SideNavFooter extends React.Component { constructor(props) { super(props); this.state = { isAboutDialogShow: false, }; } onAboutDialogToggle = () => { this.setState({isAboutDialogShow: !this.state.isAboutDialogShow}); } render() { return (
{gettext('Help')} {gettext('About')} {' '} {gettext('Clients')} {this.state.isAboutDialogShow && }
); } } export default SideNavFooter;