Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
import React from 'react';
import PropTypes from 'prop-types';
import './FourColGrid.css';
const FourColGrid = ({ header, loading, children }) => {
const renderElements = () => {
const gridElements = children.map( (element, i) => (
<div key={i} className="rmdb-grid-element">
{element}
</div>
))
return gridElements;
}
return (
<div className="rmdb-grid">
{header && !loading ? <h1>{header}</h1> : null}
<div className="rmdb-grid-content">
{renderElements()}
</div>
</div>
)
}
FourColGrid.propTypes = {
header: PropTypes.string,
loading: PropTypes.bool
}
export default FourColGrid;