2022-06-25 14:23:41 -05:00
|
|
|
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">
|
2022-06-26 11:49:03 -05:00
|
|
|
|
2022-06-25 14:26:32 -05:00
|
|
|
<Row className="d-flex flex-row justify-content-center align-items-center py-3">
|
2022-06-26 11:49:03 -05:00
|
|
|
|
2022-06-25 14:23:41 -05:00
|
|
|
{props.children}
|
2022-06-26 11:49:03 -05:00
|
|
|
|
2022-06-25 14:23:41 -05:00
|
|
|
</Row>
|
2022-06-26 11:49:03 -05:00
|
|
|
|
2022-06-25 14:23:41 -05:00
|
|
|
</Container>
|
|
|
|
|
);
|
|
|
|
|
}
|