* feat: add DateRangePicker.tsx and Calendar.tsx to match DS * chore:cleanup * tests: remove as these are duplicate tests from the library themselves * fix: mobile sizes --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com>
6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
export const DateRangePickerLazy = dynamic(() =>
|
|
import("./DateRangePicker").then((mod) => mod.DatePickerWithRange)
|
|
);
|