"use client"; import React from "react"; import { Calendar } from "@/subframe/components/Calendar"; function CalendarExample() { return ( <Calendar mode={"single"} selected={new Date()} onSelect={(date: Date | undefined) => {}} /> ); } export default CalendarExample;
mode
"single" | "multiple" | "range" | "default"
selected
Date | undefined
onSelect
(date: Date | undefined) => void
View code