wired up home page adjust image sizes

This commit is contained in:
StevanFreeborn
2022-06-25 14:23:41 -05:00
parent 0447157364
commit ac03ca3502
28 changed files with 119 additions and 8 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react';
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">
{props.children}
</Row>
</Container>
);
}