diff options
author | 2024-06-13 13:05:54 +0000 | |
---|---|---|
committer | 2024-06-13 13:05:54 +0000 | |
commit | a6df7e877f5e485b7f86dd026547e6f58a189edc (patch) | |
tree | 886e561f8c142024179b588403d715b5e9ad38b7 /packages/integrations/react/src | |
parent | 4385bf7a4dc9c65bff53a30c660f7a909fcabfc9 (diff) | |
download | astro-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.ts | 6 |
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< |