We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a2524 commit 116b40eCopy full SHA for 116b40e
src/components/previews/TablePreview.tsx
@@ -1,11 +1,11 @@
1
import React from 'react';
2
import { useDSVImport } from '../../features/context';
3
4
-interface Props {
+export interface TablePreviewProps {
5
className?: string;
6
}
7
8
-export const TablePreview: React.FC<Props> = (props) => {
+export const TablePreview: React.FC<TablePreviewProps> = (props) => {
9
const [context] = useDSVImport();
10
11
const getColumnValidationError = (columnKey: string) => {
0 commit comments