11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
import React from "react";
|
|
/**
|
|
* Render a container wrapping the month grids.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export function Months(props) {
|
|
return React.createElement("div", { ...props });
|
|
}
|