blob: 2617949419d2728e9887dee1c471c6652e1e5840 [file] [log] [blame]
import { Component } from "react";
import Styles from '../styles/autospacing.module.css';
class CardRow extends Component {
constructor(props) {
super(props);
}
render() {
return (
<div className={Styles.container}>
{
this.props.elements.map((item, index) => {
return <div className={Styles.item} key={index}>{item}</div>
})
}
</div>
)
}
}
export default CardRow;