Fix incorrect imports due to refactoring

This commit is contained in:
Pieter Vander Vennet 2021-03-29 02:04:42 +02:00
parent cd1171e678
commit bec1998a6d
5 changed files with 63 additions and 17 deletions

View file

@ -1,8 +1,8 @@
import {GeoOperations} from "./GeoOperations";
import State from "../State";
import {And} from "./And";
import {Tag} from "./Tag";
import {Or} from "./Or";
import {And} from "./Tags/And";
import {Tag} from "./Tags/Tag";
import {Or} from "./Tags/Or";
import {Utils} from "../Utils";
import opening_hours from "opening_hours";
import {UIElement} from "../UI/UIElement";