From 08fda79769f4cd8d82fb1c58d51dd8e9f58b7ef2 Mon Sep 17 00:00:00 2001 From: Simon Bigelmayr <simon.bigelmayr@mll.com> Date: Fri, 25 Feb 2022 16:44:13 +0100 Subject: [PATCH] fix: do not import default.less from index.js --- src/Grid/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Grid/index.tsx b/src/Grid/index.tsx index 8ec5d69a..6495137f 100644 --- a/src/Grid/index.tsx +++ b/src/Grid/index.tsx @@ -1,3 +1,3 @@ -import 'antd/es/grid/style/index'; +import 'antd/es/grid/style/index.less'; export { Row, Col, RowProps } from 'antd';