Files
Project_Velocity/app/node_modules/react-day-picker/dist/esm/components/Root.js

12 lines
296 B
JavaScript

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 });
}