formatting

This commit is contained in:
StevanFreeborn
2022-06-26 11:49:03 -05:00
parent 7ff302a41d
commit da36cfa782
10 changed files with 61 additions and 12 deletions
+4 -2
View File
@@ -3,13 +3,15 @@ import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
export default function CardHolder(props) {
return(
<Container fluid className="bg-dark">
<Row className="d-flex flex-row justify-content-center align-items-center py-3">
{props.children}
</Row>
</Container>
);
}