From c2aa2c96ad4bc9fe5d06eddc79072520416a6784 Mon Sep 17 00:00:00 2001 From: Aditya Kantipudi Date: Thu, 10 Oct 2024 13:22:01 +0530 Subject: [PATCH] style: changing the way of import --- src/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index b48ea50..4b2cfa2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,5 +1,5 @@ import * as Types from './types'; -import * as ResponsiveComp from './responsive_comp'; import * as Utils from './utils'; -export { Types, ResponsiveComp, Utils }; +export { Types, Utils }; +export { default as ResponsiveImage } from './responsive_comp';