import styled from 'styled-components';
const StyledTable = styled.table`
width: calc(100% - 64px);
margin: 32px;
border: 1px solid black;
background-color: gray;
thead {
font-weight: bold;
}
`
const Table = () => {
<StyledTable>
<thead>
<tr>
.....
</StyledTable>
}