diff options
author | 2024-03-13 09:55:24 +0000 | |
---|---|---|
committer | 2024-03-13 09:55:24 +0000 | |
commit | dfd146f5917ea8adacfe414bdda830ed43370c16 (patch) | |
tree | e50c3f02e8b5ac15791a680e8fb090b0c751dc0a /packages/integrations/react/test | |
parent | 8dceb5eb36226f1d097d02c47e1b24231dc333d1 (diff) | |
download | astro-dfd146f5917ea8adacfe414bdda830ed43370c16.tar.gz astro-dfd146f5917ea8adacfe414bdda830ed43370c16.tar.zst astro-dfd146f5917ea8adacfe414bdda830ed43370c16.zip |
Revert "[ci] format" (#10417)
* Revert "[ci] format"
This reverts commit 1863727215e87e20c6f5aebe5f9ee0f2783bc788.
* pin dependency
* update lock
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'; |