import React from 'react' import {Cristal} from "react-cristal"; class Window extends React.Component { render() { let props = {className: '', ...this.props} props.className = `${props.className} Window` return {this.props.children} } } export default Window