fix: confus

This commit is contained in:
cha0s 2021-01-26 11:07:43 -06:00
parent 42bcc6fb2f
commit f200518edd

View File

@ -3,7 +3,7 @@ import './index.scss';
import {PropTypes, React} from '@latus/react';
import useEntity from '../../hooks/use-entity';
import Stage from '../stage';
import EntityStage from '../stage';
const View = ({json}) => {
const entity = useEntity(json);
@ -19,7 +19,7 @@ const View = ({json}) => {
);
}
else {
output = <Stage entity={entity} />;
output = <EntityStage entity={entity} />;
}
return (
<div className="entity-view">