2020-10-04 01:04:46 +02:00
|
|
|
//*
|
2020-08-31 02:59:47 +02:00
|
|
|
|
2020-10-09 21:11:52 +02:00
|
|
|
|
2020-10-23 01:20:48 +02:00
|
|
|
|
|
|
|
import OpeningHoursPickerTable from "./UI/Input/OpeningHours/OpeningHoursPickerTable";
|
|
|
|
import {UIElement} from "./UI/UIElement";
|
|
|
|
import {UIEventSource} from "./Logic/UIEventSource";
|
|
|
|
import {OpeningHour} from "./Logic/OpeningHours";
|
|
|
|
|
|
|
|
new OpeningHoursPickerTable(new UIEventSource<UIElement[]>([]), new UIEventSource<OpeningHour[]>([]))
|
|
|
|
.AttachTo("maindiv")
|
2020-10-09 21:11:52 +02:00
|
|
|
|
2020-10-02 19:00:24 +02:00
|
|
|
|
2020-10-06 01:37:02 +02:00
|
|
|
/*/
|
2020-10-02 19:00:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
import {Utils} from "./Utils";
|
|
|
|
import {FixedUiElement} from "./UI/Base/FixedUiElement";
|
|
|
|
|
|
|
|
Utils.generateStats((stats) => {
|
2020-10-06 01:37:02 +02:00
|
|
|
new FixedUiElement(stats).AttachTo('maindiv')
|
2020-10-02 19:00:24 +02:00
|
|
|
})
|
|
|
|
//*/
|