From ac4826a93a65b6f925fdf487755508dce483f925 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Thu, 15 Jun 2023 15:01:18 -0400 Subject: [PATCH] fix exports --- src/components/alert/alert.ts | 2 +- src/components/animated-image/animated-image.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/alert/alert.ts b/src/components/alert/alert.ts index 7af0b4bc7..9bea280cd 100644 --- a/src/components/alert/alert.ts +++ b/src/components/alert/alert.ts @@ -1,3 +1,3 @@ import SlAlert from './alert.component'; -export default SlAlert +export default SlAlert; window.customElements.define('sl-alert', class extends SlAlert {}); diff --git a/src/components/animated-image/animated-image.ts b/src/components/animated-image/animated-image.ts index b3f52e05e..e12379912 100644 --- a/src/components/animated-image/animated-image.ts +++ b/src/components/animated-image/animated-image.ts @@ -1,3 +1,3 @@ import SlAnimatedImage from './animated-image.component'; -export default SlAnimatedImage +export default SlAnimatedImage; window.customElements.define('sl-animated-image', class extends SlAnimatedImage {});