init availabilityconfig component
parent
3e08c66888
commit
4c11cf6adb
|
@ -0,0 +1,31 @@
|
||||||
|
function ScheduleDay() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>This is the schedule for each day</h1>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function CopyButton() {
|
||||||
|
return <div>Copy button goes here</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function CopyTimes() {
|
||||||
|
return <div>Copy time goes here</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function RemoveTimeButton() {
|
||||||
|
return <div>Remove time button goes here</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function TimeRangeField() {
|
||||||
|
return <div>Time ranges go here</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getDateSlotRange() {
|
||||||
|
return <div>Date ranges go here</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Schedule() {
|
||||||
|
return <div>The actual Schedule component</div>;
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
export { Schedule } from "./Schedule.tsx";
|
||||||
|
export * from "../types";
|
Loading…
Reference in New Issue