const myComponentTemplate = `
<div class="min-w-96 mb-4 p-4 border border-gray-300 rounded-lg">
<h2 class="text-xl font-bold mb-2">{{title}}</h2>
<p class="text-gray-600">{{content}}</p>
</div>
`;
createWebComponent("my-component", myComponentTemplate, ["title", "content"]);
|