mirror of https://gitlab.com/ceda_ei/sonzai.git
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;
|
||
|
}
|