import type Wizard from "./Wizard.js"; import WizardTab from "./WizardTab.js"; import WizardPopoverTemplate from "./WizardPopoverTemplate.js"; export default function WizardTemplate(this: Wizard) { return (<>
{this._steps.map(step => )}
{WizardPopoverTemplate.call(this)} ); }