import React from 'react'; import { useHistory } from 'react-router'; import { WithLogout } from '../hoc/withLogout'; import Calendar from '../components/Calendar/Calendar'; const CalendarPage = () => { const history = useHistory(); return { history.push('/report/0') }} />; }; export default CalendarPage;