UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines 328 B
import React from "react"; /** * Render the root element of the calendar. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export function Root(props) { const { rootRef, ...rest } = props; return React.createElement("div", { ...rest, ref: rootRef }); } //# sourceMappingURL=Root.js.map