From 1a719a3fd7a2ebbb1d9bf322d3cf49cfa007d3ce Mon Sep 17 00:00:00 2001 From: Ryu Sato Date: Sat, 23 Nov 2024 08:41:24 +0000 Subject: [PATCH] fix import --- src/DataTable.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/DataTable.tsx b/src/DataTable.tsx index 40403e2..3ca0457 100644 --- a/src/DataTable.tsx +++ b/src/DataTable.tsx @@ -5,8 +5,10 @@ import type { Node, Parent } from 'unist'; // import { useRef } from 'react'; import type { Plugin } from 'unified'; import { visit } from 'unist-util-visit'; -import { type GrowiNode, isGrowiNode } from './GrowiNode'; -import type { TableColumns, TableData } from './TableData'; +import type { GrowiNode } from './GrowiNode'; +import { isGrowiNode } from './isGrowiNode'; +import type { TableData } from './TableData'; +import type { TableColumns } from './TableColumn'; import DataTable, { DataTableRef } from 'datatables.net-react'; import DT from 'datatables.net-bs5';