summaryrefslogtreecommitdiff
path: root/packages/integrations/react/src
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-03-10 16:19:57 +0100
committerGravatar GitHub <noreply@github.com> 2023-03-10 16:19:57 +0100
commitc44aa15534007c3ac320fa6e632c760ddb2ce2f3 (patch)
tree8f200fb52627f228685dfc9e83ef067cdde31d91 /packages/integrations/react/src
parentd37dc7c71a688fe25cfdd7cfa3594ffe1e0a6d6e (diff)
downloadastro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.tar.gz
astro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.tar.zst
astro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.zip
fix: Enforce the usage of type imports when possible (#6502)
Diffstat (limited to 'packages/integrations/react/src')
-rw-r--r--packages/integrations/react/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts
index 81d5b5da4..21ef3568c 100644
--- a/packages/integrations/react/src/index.ts
+++ b/packages/integrations/react/src/index.ts
@@ -1,4 +1,4 @@
-import { AstroIntegration } from 'astro';
+import type { AstroIntegration } from 'astro';
import { version as ReactVersion } from 'react-dom';
function getRenderer() {