Row.js 503 B

1
  1. var _extends=Object.assign||function(a){for(var b,c=1;c<arguments.length;c++)for(var d in b=arguments[c],b)Object.prototype.hasOwnProperty.call(b,d)&&(a[d]=b[d]);return a};import React from'react';class Row extends React.Component{constructor(a){super(a)}render(){return React.createElement('div',_extends({},this.props,{className:this.props.className+' row '+(this.props.apart?'justify-content-between':'')}),this.props.children)}}Row.EditPosition='top-center',Row.Category='Layout';export default Row;