1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
--- import Lorem from '../components/Lorem.astro'; import '../components/Test.js'; import '../components/Counter.js'; --- <!doctype html> <html lang="en"> <head> <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <title>Demo</title> </head> <body> <h1>Test app</h1> <my-counter client:load /> <Lorem /> <calc-add num={33} /> </body> </html>