import AstroLogo from "../../images/astro.png?url"; import OutSystemsLogo from "../../images/outsystems.png?url"; interface DemoProps { children?: string; header?: string; initialCount?: number; showMessage?: string; } export default function Demo({ initialCount = 0, showMessage = "", }: DemoProps): string { return `
HTML Demo Component
HTML counter component
Internal counter controls. It keeps state within the component.
${initialCount}
The button sends the current count value to a function in the parent component.
Nano Stores
Value:
Slot content (not supported)
OutSystems logo Astro logo
`; }