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>