diff options
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 b3b95c4b3..3afd8233f 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 ArrowFunction from '../components/ArrowFunction.jsx'; -import CloneElement from '../components/CloneElement'; -import Later from '../components/Goodbye.vue'; import Hello from '../components/Hello.jsx'; +import Later from '../components/Goodbye.vue'; +import ArrowFunction from '../components/ArrowFunction.jsx'; import PropsSpread from '../components/PropsSpread.jsx'; -import Pure from '../components/Pure.jsx'; import {Research2} from '../components/Research.jsx'; +import Pure from '../components/Pure.jsx'; import TypeScriptComponent from '../components/TypeScriptComponent'; +import CloneElement from '../components/CloneElement'; import WithChildren from '../components/WithChildren'; import WithId from '../components/WithId'; |