summaryrefslogtreecommitdiff
path: root/packages/integrations/react/src
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <ematipico@users.noreply.github.com> 2024-06-13 13:05:54 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-06-13 13:05:54 +0000
commita6df7e877f5e485b7f86dd026547e6f58a189edc (patch)
tree886e561f8c142024179b588403d715b5e9ad38b7 /packages/integrations/react/src
parent4385bf7a4dc9c65bff53a30c660f7a909fcabfc9 (diff)
downloadastro-a6df7e877f5e485b7f86dd026547e6f58a189edc.tar.gz
astro-a6df7e877f5e485b7f86dd026547e6f58a189edc.tar.zst
astro-a6df7e877f5e485b7f86dd026547e6f58a189edc.zip
[ci] format
Diffstat (limited to 'packages/integrations/react/src')
-rw-r--r--packages/integrations/react/src/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts
index c20146949..f8a9c4ab2 100644
--- a/packages/integrations/react/src/index.ts
+++ b/packages/integrations/react/src/index.ts
@@ -1,12 +1,12 @@
import react, { type Options as ViteReactPluginOptions } from '@vitejs/plugin-react';
-import type {AstroIntegration, ContainerRenderer} from 'astro';
+import type { AstroIntegration, ContainerRenderer } from 'astro';
import type * as vite from 'vite';
import {
+ type ReactVersionConfig,
+ type SupportedReactVersion,
getReactMajorVersion,
isUnsupportedVersion,
versionsConfig,
- type ReactVersionConfig,
- type SupportedReactVersion,
} from './version.js';
export type ReactIntegrationOptions = Pick<