11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
import React from "react";
|
|
/**
|
|
* Render a `select` element.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export function Select(props) {
|
|
return React.createElement("select", { ...props });
|
|
}
|