mirror of
https://gitlab.com/ceda_ei/sonzai.git
synced 2025-07-03 05:16:54 +02:00
15 lines
200 B
JavaScript
15 lines
200 B
JavaScript
export default function timetable(state) {
|
|
if (typeof state === "undefined")
|
|
// Array of days starting with Sunday
|
|
return [
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
];
|
|
return state;
|
|
}
|