---
name: Calendar
menu: Molecules
route: /molecules/Calendar
---

import Calendar from './Calendar';
import { Playground, Props } from 'docz';

# Calendar

This component renders an HTML `<div>` and passes along all props.

## API
<Props of={Calendar} />

## Calendar

<Playground>
		<Calendar onDateSelected={(date, event) => {
		console.log('DATE SELECTED', date); console.log(event, 'event')}} />
</Playground>
