react-day-picker
Version:
Customizable Date Picker for React
12 lines • 345 B
JavaScript
import React from "react";
/**
* Render the row with the weekday names.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Weekdays(props) {
return (React.createElement("thead", { "aria-hidden": true },
React.createElement("tr", { ...props })));
}
//# sourceMappingURL=Weekdays.js.map