components/example.tsx
1
2
import { DatePicker } from "passport-ui";import { useState } from "react";components/example.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
function DatePickerExample() { const [date, setDate] = useState<Date | undefined>(); return ( <div className="w-sm"> <DatePicker date={date} onSelect={setDate} placeholder="Pick a date" /> </div> );}