🐞 Patch Changes
-
#11138
98e0372
Thanks @ematipico! - You can now passprops
when rendering a component using the Container APIs:import { experimental_AstroContainer as AstroContainer } from 'astro/contaienr';import Card from '../src/components/Card.astro';const container = await AstroContainer.create();const result = await container.renderToString(Card, {props: {someState: true,},});