removed all modules

This commit is contained in:
Fedor Katurov 2020-01-08 12:07:36 +07:00
parent aa8fd14517
commit 0c321f2bb3
21 changed files with 677 additions and 77 deletions

View file

@ -2,13 +2,11 @@ import React, {
FC,
useEffect,
memo,
useContext,
useState,
useCallback
} from "react";
import { IMapRoute, ILatLng } from "../../../redux/map/types";
import { MapContext } from "$utils/context";
import { InteractivePoly } from "$modules/InteractivePoly";
import { InteractivePoly } from "$modules/InteractivePoly";
import { isMobile } from "$utils/window";
import { LatLng, Map } from "leaflet";

View file

@ -1,6 +1,6 @@
import * as React from "react";
import { Map, marker, Marker } from "leaflet";
import { IStickerDump, Sticker as StickerComponent } from "$modules/Sticker";
import { IStickerDump } from "$redux/map/types";
import { STICKERS } from "$constants/stickers";
import { StickerDesc } from "$components/StickerDesc";
import classNames from "classnames";

View file

@ -1,8 +1,8 @@
import * as React from "react";
import { IStickerDump } from "$modules/Sticker";
import { FeatureGroup, Map } from "leaflet";
import { Sticker } from "$containers/map/Sticker";
import { mapSetSticker, mapDropSticker } from "$redux/map/actions";
import * as React from 'react';
import { IStickerDump } from '$redux/map/types';
import { FeatureGroup, Map } from 'leaflet';
import { Sticker } from '$containers/map/Sticker';
import { mapSetSticker, mapDropSticker } from '$redux/map/actions';
interface IProps {
stickers: IStickerDump[];