A date field component that allows users to enter and edit date.
npx ghost-ui-native add calendar
import { Calendar } from '@/components/ui/calendar';
const [date, setDate] = useState(new Date()) <Calendar selected={date} onSelect={setDate} />