Grid en artist

This commit is contained in:
Daniel Cortes
2020-06-19 16:31:29 -04:00
parent 8ed4ad16e1
commit 326f8227b5
3 changed files with 41 additions and 19 deletions

View File

@@ -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)

View File

@@ -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>
}