Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
import { DatePicker } from "@medusajs/ui"
|
|
|
|
export default function DatePickerSingle() {
|
|
return (
|
|
<div className="w-[250px]">
|
|
<DatePicker placeholder="Pick a date" />
|
|
</div>
|
|
)
|
|
}
|