# Single Month Render Hooks

Customize the appearance of each individual month within Multi-Month view.

`singleMonthClass` - a [ClassName Input](classname-input.md)

`singleMonthDidMount`

`singleMonthWillUnmount`

For the month title element, see [Single Month Header Render Hooks](single-month-header-render-hooks.md). For the month grid's header row and body, see [Table Render Hooks](table-render-hooks.md).


## Argument

When the above hooks are specified as a function in the form `function(info)`, the `info` is an object with the following properties:

- `date` - Date object representing the first day of the month
- `multiMonthColumns` - the number of month columns rendered per row. `0` until the layout has been measured
- `isFirst` - `true` if this is the first month rendered in the view
- `isLast` - `true` if this is the last month rendered in the view
- `el` - the element. only available in `singleMonthDidMount` and `singleMonthWillUnmount`
