Skip to Content

Bootstrap 5

Basic

Input field with dual calendar popover for date range selection styled with Bootstrap 5 utility classes.

import DateRangePicker from "./DateRangePicker";

export default function App() {
  return (
    <div className="w-100 vh-100 p-3">
      <DateRangePicker />
    </div>
  );
}

Calendar Only

Standalone calendar component for inline date range selection.

import { DateRangeCalendar } from "./DateRangeCalendar";

export default function App() {
  return (
    <div className="w-100 vh-100 p-3">
      <DateRangeCalendar />
    </div>
  );
}

Dual Calendar

Two calendars side by side showing consecutive months for better range selection UX.

import { DateRangeCalendarDual } from "./DateRangeCalendarDual";

export default function App() {
  return (
    <div className="w-100 vh-100 p-3">
      <DateRangeCalendarDual />
    </div>
  );
}

Last updated on