17 lines
349 B
JavaScript
17 lines
349 B
JavaScript
import { JlSection } from './common/Section.js';
|
|
export { SectionTemplate } from './common/Section.js';
|
|
|
|
const displayConfig = {
|
|
lineColor: '#5578b6',
|
|
occupiedColor: '#f00',
|
|
lineWidth: 5,
|
|
};
|
|
class Section extends JlSection {
|
|
constructor() {
|
|
super();
|
|
this.setDisplayConfig(displayConfig);
|
|
}
|
|
}
|
|
|
|
export { Section };
|