import React from 'react'; import { Link } from 'react-router-dom'; import PropTypes from 'prop-types'; import './sidebar.css'; import { BackIcon } from '../components/icons'; const Sidebar = (props) => (
); Sidebar.propTypes = { back: PropTypes.string, title: PropTypes.string.isRequired, children: PropTypes.node } export default Sidebar;