diff options
author | 2024-03-13 05:53:52 +0000 | |
---|---|---|
committer | 2024-03-13 05:53:52 +0000 | |
commit | 1863727215e87e20c6f5aebe5f9ee0f2783bc788 (patch) | |
tree | cc82444b9f06c31305590fd4cc3e953536fceec8 /packages/integrations/react/test | |
parent | b3dbb49058c32b152a8d14c76ddf199802e5cada (diff) | |
download | astro-1863727215e87e20c6f5aebe5f9ee0f2783bc788.tar.gz astro-1863727215e87e20c6f5aebe5f9ee0f2783bc788.tar.zst astro-1863727215e87e20c6f5aebe5f9ee0f2783bc788.zip |
[ci] format
Diffstat (limited to 'packages/integrations/react/test')
-rw-r--r-- | packages/integrations/react/test/fixtures/react-component/src/pages/index.astro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/integrations/react/test/fixtures/react-component/src/pages/index.astro b/packages/integrations/react/test/fixtures/react-component/src/pages/index.astro index 3afd8233f..b3b95c4b3 100644 --- a/packages/integrations/react/test/fixtures/react-component/src/pages/index.astro +++ b/packages/integrations/react/test/fixtures/react-component/src/pages/index.astro @@ -1,12 +1,12 @@ --- -import Hello from '../components/Hello.jsx'; -import Later from '../components/Goodbye.vue'; import ArrowFunction from '../components/ArrowFunction.jsx'; +import CloneElement from '../components/CloneElement'; +import Later from '../components/Goodbye.vue'; +import Hello from '../components/Hello.jsx'; import PropsSpread from '../components/PropsSpread.jsx'; -import {Research2} from '../components/Research.jsx'; import Pure from '../components/Pure.jsx'; +import {Research2} from '../components/Research.jsx'; import TypeScriptComponent from '../components/TypeScriptComponent'; -import CloneElement from '../components/CloneElement'; import WithChildren from '../components/WithChildren'; import WithId from '../components/WithId'; |