DocSpace-client/packages/asc-web-components/table-container/TableCell.js

15 lines
278 B
JavaScript
Raw Normal View History

2021-07-09 08:59:20 +00:00
import React from "react";
import { StyledTableCell } from "./StyledTableContainer";
const TableCell = (props) => {
2021-07-15 07:57:06 +00:00
return (
<StyledTableCell
className="table-container_cell"
ref={props.forwardedRef}
{...props}
/>
);
2021-07-09 08:59:20 +00:00
};
export default TableCell;