fix: pass in app

This commit is contained in:
cha0s 2019-05-23 05:32:29 -05:00
parent 823b54d794
commit 038b5828bd

View File

@ -45,10 +45,10 @@ const MenuComponent = ({app}) => {
'menu-inner',
opened ? 'open' : '',
)}>
<Inventory />
<Inventory app={app} />
<QuickStatus app={app} />
<WorldTime worldTime={app.worldTime} />
<Hotbar />
<Hotbar app={app} />
</div>
</div>;
}