2021-06-16 17:51:25 +03:00
|
|
|
import React from 'react';
|
2021-08-09 15:10:12 +03:00
|
|
|
import { WithLogout } from '../hoc/withLogout';
|
2021-06-16 17:51:25 +03:00
|
|
|
import Calendar from '../components/Calendar/Calendar';
|
|
|
|
|
2021-07-02 16:02:47 +03:00
|
|
|
const CalendarPage = () => {
|
2021-08-09 15:10:12 +03:00
|
|
|
return <WithLogout><Calendar /></WithLogout>;
|
2021-06-16 17:51:25 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
export default CalendarPage;
|