diff --git a/packages/atoms/availabilityconfig/Schedule.tsx b/packages/atoms/availabilityconfig/Schedule.tsx new file mode 100644 index 0000000000..f14a323144 --- /dev/null +++ b/packages/atoms/availabilityconfig/Schedule.tsx @@ -0,0 +1,31 @@ +function ScheduleDay() { + return ( +
+

This is the schedule for each day

+
+ ); +} + +function CopyButton() { + return
Copy button goes here
; +} + +function CopyTimes() { + return
Copy time goes here
; +} + +function RemoveTimeButton() { + return
Remove time button goes here
; +} + +function TimeRangeField() { + return
Time ranges go here
; +} + +function getDateSlotRange() { + return
Date ranges go here
; +} + +export default function Schedule() { + return
The actual Schedule component
; +} diff --git a/packages/atoms/availabilityconfig/export.ts b/packages/atoms/availabilityconfig/export.ts new file mode 100644 index 0000000000..a739080501 --- /dev/null +++ b/packages/atoms/availabilityconfig/export.ts @@ -0,0 +1,2 @@ +export { Schedule } from "./Schedule.tsx"; +export * from "../types";