From 3db87de3073270ab4d38a719917ac81877ada801 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sat, 21 Dec 2019 19:05:56 -0800 Subject: [PATCH] fix(structured-list): remove StructuredList import --- src/components/StructuredList/index.js | 3 --- src/index.js | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/StructuredList/index.js b/src/components/StructuredList/index.js index fffa5c44..3236f9ed 100644 --- a/src/components/StructuredList/index.js +++ b/src/components/StructuredList/index.js @@ -1,6 +1,3 @@ -import StructuredList from './StructuredList.svelte'; - -export default StructuredList; export { default as StructuredListSkeleton } from './StructuredList.Skeleton.svelte'; export { default as StructuredListBody } from './StructuredListBody.svelte'; export { default as StructuredListHead } from './StructuredListHead.svelte'; diff --git a/src/index.js b/src/index.js index d9f67d15..f98206b8 100644 --- a/src/index.js +++ b/src/index.js @@ -30,7 +30,7 @@ import Search, { SearchSkeleton } from './components/Search'; import Select, { SelectSkeleton, SelectItem, SelectItemGroup } from './components/Select'; import SkeletonPlaceholder from './components/SkeletonPlaceholder'; import SkeletonText from './components/SkeletonText'; -import StructuredList, { +import { StructuredListSkeleton, StructuredListBody, StructuredListHead, @@ -102,7 +102,6 @@ export { SkeletonPlaceholder, SkeletonText, Switch, - StructuredList, StructuredListSkeleton, StructuredListBody, StructuredListHead,