Repository URL to install this package:
|
Version:
4.0.7 ▾
|
import React from 'react'
import { RowProps } from './typings'
import { RowWrapper } from './styled'
class Row extends React.PureComponent<RowProps> {
render() {
const classList = ['row'].concat(this.props.className)
const className = classList.join(' ')
return <RowWrapper className={className}>{this.props.children}</RowWrapper>
}
}
export { Row }
export default Row