InternetProgramming/tableuser/LinesTable.jsx
2024-01-14 20:55:16 +04:00

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;