🐞 Patch Changes
-
#11138
98e0372Thanks @ematipico! - You can now passpropswhen 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,},});