Skip to content

Commit b8f6745

Browse files
committed
fix: TableContainer
1 parent e037901 commit b8f6745

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solved-ac/ui-react",
3-
"version": "0.0.1-alpha.35",
3+
"version": "0.0.1-alpha.36",
44
"description": "React component library used by solved.ac",
55
"author": "shiftpsh",
66
"license": "MIT",

src/components/Table/TableContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const TableContainerContainer = styled.div`
88

99
export const TableContainer: PC<'div'> = React.forwardRef(
1010
<T extends ElementType>(props: PP<T>, ref?: PR<T>) => {
11-
const { as = 'table', ...rest } = props
11+
const { as = 'div', ...rest } = props
1212

1313
return (
1414
<TableContainerContainer

0 commit comments

Comments
 (0)