UNPKG

scratch-gui

Version:

GraphicaL User Interface for creating and running Scratch 3.0 projects

14 lines (10 loc) 401 B
import PropTypes from 'prop-types'; import React from 'react'; import VM from 'scratch-vm'; import StageWrapperComponent from '../components/stage-wrapper/stage-wrapper.jsx'; const StageWrapper = props => <StageWrapperComponent {...props} />; StageWrapper.propTypes = { isRendererSupported: PropTypes.bool.isRequired, vm: PropTypes.instanceOf(VM).isRequired }; export default StageWrapper;