lotus/lotuspond/front/src/Window.js
2019-09-19 02:50:23 +02:00

16 lines
320 B
JavaScript

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 <Cristal {...props}>
{this.props.children}
</Cristal>
}
}
export default Window