To keep things professional you can add integrate the email application with this theme, to share the important information with your colleagues. We have provided a design for the email application, you can use it and build a fully functional e-mail application.
npm i react-big-calendar
import { Calendar, momentLocalizer } from 'react-big-calendar'
import moment from 'moment'
const localizer = momentLocalizer(moment)
const MyCalendar = props => (
<div>
<Calendar
localizer={localizer}
events={myEventsList}
startAccessor="start"
endAccessor="end"
style={{height: 500}}
/>
</div>
)
npm uninstall react-big-calendar