fix: props

This commit is contained in:
cha0s 2021-01-06 22:29:59 -06:00
parent d545a8d394
commit af8285fb25

View File

@ -6,10 +6,13 @@ import {hot} from 'react-hot-loader';
import Stage from './components/stage';
import Ui from './components/ui';
const WIDTH = 1600;
const HEIGHT = 900;
const Humus = () => (
<div className="humus">
<Stage width={400} height={225} />
<Ui />
<Stage width={WIDTH} height={HEIGHT} />
<Ui width={WIDTH} height={HEIGHT} />
</div>
);