UNPKG

yahoi

Version:

Yet Another Highly Opinionated Isomorphic Framework

11 lines (10 loc) 234 B
import React from 'react'; export default class Col extends React.Component { render() { return ( <div className={`col-${this.props.size}`} style={this.props.style}> {this.props.children} </div> ); } }