blob: 93037b51779a191f3ca95ac052d2dc7fb6cdbe37 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from 'react'
import { Rect } from 'react-konva'
import { BACKDROP_COLOR } from '../../../../util/colors'
import { MAP_SIZE_IN_PIXELS } from '../MapConstants'
function Backdrop() {
return <Rect x={0} y={0} width={MAP_SIZE_IN_PIXELS} height={MAP_SIZE_IN_PIXELS} fill={BACKDROP_COLOR} />
}
export default Backdrop
|