summaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/pages/children.astro
blob: 3f83eafcb71e6cc69c68dd42fbd574623afe4d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
import WithChildren from '../components/WithChildren';
---

<html>
  <head>
    <!-- Head Stuff -->
  </head>
  <body>
		<WithChildren id="one">
			<div>child 1</div><div>child 2</div>
		</WithChildren>

		<WithChildren id="two" client:load>
			<div>child 1</div><div>child 2</div>
		</WithChildren>
  </body>
</html>