import { type FC } from 'react';

import { Table as MuiTable } from '@mui/material';

import { type TableProps } from './types';

const Table: FC<TableProps> = ({ children, ...props }) => {
  return <MuiTable {...props}>{children}</MuiTable>;
};

export default Table;
