added editable route

This commit is contained in:
Fedor Katurov 2019-12-30 13:16:35 +07:00
parent 5664291c92
commit fca52df9f5
17 changed files with 282 additions and 11 deletions

View file

@ -19,6 +19,9 @@ import { IStickerPack } from "$constants/stickers";
import { IDialogs } from "$constants/dialogs";
import { IModes } from "$constants/modes";
import { Map } from "$containers/map/Map"
import { TileLayer } from '$containers/map/TileLayer';
type Props = {
sticker: string,
renderer_active: boolean,
@ -49,6 +52,8 @@ const Component = (props: Props) => (
setDialogActive={props.setDialogActive}
/>
<Map />
{ props.renderer_active &&
<Renderer onClick={props.hideRenderer} />
}