Skip to content

Commit

Permalink
fix(Table): display
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdt committed Feb 4, 2021
1 parent 5986594 commit 810929f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/TableBody/TableBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ const TableBody: React.FC = (props) => {
return <StyledTableBody>{props.children}</StyledTableBody>
}

const StyledTableBody = styled.div``
const StyledTableBody = styled.div`
display: block;
`

export default TableBody

0 comments on commit 810929f

Please sign in to comment.