22 lines
509 B
JavaScript
22 lines
509 B
JavaScript
import PropTypes from 'prop-types';
|
|
import { Container } from 'react-bootstrap';
|
|
import './LineTableRow.css';
|
|
|
|
const LinesTable = ({ children }) => {
|
|
return (
|
|
<Container fluid className='p-0'>
|
|
<table id="games-table" className='table-borderless table_of_main_page'>
|
|
<tbody>
|
|
{children}
|
|
</tbody>
|
|
</table>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
LinesTable.propTypes = {
|
|
children: PropTypes.node,
|
|
};
|
|
|
|
export default LinesTable;
|