[Plasmic x SvelteKit : Override props with “render”]
Hi!
I have a grid with multiple cards that I need to customize (provide data like name, description, image, etc.).
According to the React API doc, I should use
{
render: (props, Component) => <Component {...props} />;
}
Of course, that doesn’t work exactly that way in Svelte.
How can I make it work within Svelte please?
Attached: screenshot of my Plasmic design + screenshot of my code