UNPKG

@ventum-digital/iiq-plugin-project-generator

Version:

A npm tool to set-up the project structure for developing an IIQ Plugin.

15 lines (13 loc) 397 B
import { div } from "@ventum/ui-components/BaseElements"; import { Component } from "@ventum/ui-components/Component"; import "@css/style.scss"; // noinspection JSUnusedGlobalSymbols export class __displayName__ extends Component { public constructor() { super(); this.htmlElement = div( { className: '__packageName__' }, "Hello from __displayName__ Component" ); } }