import { WebComponent } from "../../src/index.js"; export class BooleanPropTest extends WebComponent { static props = { isInline: false, anotherone: false, }; get template() { return `
is-inline: ${this.props.isInline}
another-one: ${this.props.anotherone}
`; } } customElements.define("boolean-prop-test", BooleanPropTest);