import React from 'react'; import PropTypes from 'prop-types'; import ls from './Window.less' import Fa from "./Fa"; export default class Window extends React.Component { constructor({initWidth}) { super(); this.state = { width: initWidth } } render() { let {children, title, minimizable } = this.props; return