From a30c76f5c3d48d2c46c03b9ace80a707b2d7997d Mon Sep 17 00:00:00 2001 From: leejimqiu Date: Wed, 2 Mar 2022 16:25:42 +0800 Subject: [PATCH] fix(table): export table directly --- src/table/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/table/index.ts b/src/table/index.ts index 1e126fd4b7..841ba14aa9 100644 --- a/src/table/index.ts +++ b/src/table/index.ts @@ -33,5 +33,6 @@ const TPrimaryTable = mapProps([ export const BaseTable: WithInstallType = withInstall(_BaseTable); export const PrimaryTable: WithInstallType = withInstall(TPrimaryTable); export const EnhancedTable: WithInstallType = withInstall(_EnhancedTable); +export const Table = withInstall(TPrimaryTable); export default PrimaryTable;