Grid en artist
This commit is contained in:
@@ -23,6 +23,10 @@ const Comment = (props) => (
|
||||
)
|
||||
|
||||
export const Comments = (props) => {
|
||||
if(!props.render) {
|
||||
return null;
|
||||
}
|
||||
|
||||
let comentarios = [];
|
||||
|
||||
let comment_count = Math.floor(Math.random() * 20)
|
||||
|
||||
@@ -2,10 +2,15 @@ import React from 'react';
|
||||
|
||||
import './Grid.scss';
|
||||
|
||||
export const RowCol = (props) => {
|
||||
return <Row><Col>{props.children}</Col></Row>
|
||||
}
|
||||
|
||||
export const Col = (props) => {
|
||||
return <div className="col">{props.children}</div>
|
||||
}
|
||||
|
||||
|
||||
export const Row = (props) => {
|
||||
return <div className="row">{props.children}</div>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user