UNPKG

scratch-gui

Version:

GraphicaL User Interface for creating and running Scratch 3.0 projects

19 lines (15 loc) 379 B
import React from 'react'; import WebGlModalComponent from '../components/webgl-modal/webgl-modal.jsx'; class WebGlModal extends React.Component { handleCancel () { window.history.back(); } render () { return ( <WebGlModalComponent onBack={this.handleCancel} /> ); } } export default WebGlModal;