summaryrefslogtreecommitdiff
path: root/src/components/map/groups/RoomGroup.js
blob: 1a8b18d53848b23c88f80922528c9904df0808ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from "react";
import {Group, Rect} from "react-konva";

const RoomGroup = () => (
    <Group>
        <Rect
            x={10}
            y={10}
            width={50}
            height={50}
            fill="green"
        />
    </Group>
);

export default RoomGroup;