react-misc-toolbox
Version:
- [ ] diagramexample | optimize creating from blank slate
44 lines (43 loc) • 830 B
JavaScript
import s from "./schedule.json"
const constants = {}
constants.schedule = [
{
value: "1",
label: [["Понедельник", "19:00-21:00"], [s.location.a]],
},
{
value: "2",
label: [["Вторник", "19:00-21:00"], [s.location.a]],
},
{
value: "4",
label: [["Четверг", "16:00-18:00"], [s.location.a]],
},
{
value: "6",
label: [["Суббота", "12:15-14:15"], [s.location.a]],
},
{
value: "7",
label: [["Воскресенье", "16:00-18:00"], [s.location.a]],
},
]
constants.simple = [
{
value: "1",
label: "14:30-16:00",
},
{
value: "2",
label: "16:00-17:30",
},
{
value: "3",
label: "17:30-19:00",
},
{
value: "4",
label: "19:00-21:30",
},
]
export { constants }