Skip to content

Commit 116b40e

Browse files
committed
Fix private table preview props
1 parent a6a2524 commit 116b40e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/previews/TablePreview.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import React from 'react';
22
import { useDSVImport } from '../../features/context';
33

4-
interface Props {
4+
export interface TablePreviewProps {
55
className?: string;
66
}
77

8-
export const TablePreview: React.FC<Props> = (props) => {
8+
export const TablePreview: React.FC<TablePreviewProps> = (props) => {
99
const [context] = useDSVImport();
1010

1111
const getColumnValidationError = (columnKey: string) => {

0 commit comments

Comments
 (0)