diff options
Diffstat (limited to 'packages/astro/test/fixtures/react-and-solid/src/pages/index.astro')
-rw-r--r-- | packages/astro/test/fixtures/react-and-solid/src/pages/index.astro | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/react-and-solid/src/pages/index.astro b/packages/astro/test/fixtures/react-and-solid/src/pages/index.astro new file mode 100644 index 000000000..99f781534 --- /dev/null +++ b/packages/astro/test/fixtures/react-and-solid/src/pages/index.astro @@ -0,0 +1,13 @@ +--- +import { ExampleReact } from '../components/ExampleReact'; +import { ExampleSolid } from '../components/ExampleSolid'; +--- +<html> + <head> + <title>title</title> + </head> + <body> + <ExampleReact /> + <ExampleSolid /> + </body> +</html> |