Complete the code to render a static Astro component.
<MyComponent [1] />Use client:static to keep the component static without hydration.
Complete the code to hydrate a component only when it becomes visible.
<MyComponent [1] />client:visible hydrates the component when it scrolls into view.
Fix the error in the hydration directive to hydrate on page load.
<MyComponent [1] />client:load hydrates the component as soon as the page loads.
Fill both blanks to hydrate a component only when the browser is idle and keep it static otherwise.
<MyComponent [1] /> <AnotherComponent [2] />
client:idle hydrates when the browser is idle, and client:static keeps the component static without hydration.
Fill all three blanks to hydrate a component on load, another on visibility, and keep a third static.
<CompLoad [1] /> <CompVisible [2] /> <CompStatic [3] />
client:load hydrates on page load, client:visible hydrates on visibility, and client:static keeps the component static.