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.

Installing and usage
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>
)
Remove package from our project
npm uninstall react-big-calendar