Adding className support to Col component.
This commit is contained in:
@@ -48,7 +48,7 @@ class Row extends React.Component {
|
|||||||
class Col extends React.Component {
|
class Col extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className={'cell small-' + this.props.width}>
|
<div className={'cell small-' + this.props.width + ' ' + (this.props.className ? this.props.className : '')}>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1942,9 +1942,6 @@
|
|||||||
|
|
||||||
;; mark spaces
|
;; mark spaces
|
||||||
|
|
||||||
;; can't trade other player's ridge
|
|
||||||
;; don't let players join without name
|
|
||||||
|
|
||||||
;; error:
|
;; error:
|
||||||
;; Call history:
|
;; Call history:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user