@stories-js/core
Version:
Stories web components to build stories
20 lines • 530 B
JavaScript
/*!
* (C) StoriesJS https://storiesjs.org - GPL-2.0 License
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { Component, Host, h } from '@stencil/core';
export class Row {
render() {
return (h(Host, null,
h("slot", null)));
}
static get is() { return "stories-row"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() { return {
"$": ["row.scss"]
}; }
static get styleUrls() { return {
"$": ["row.css"]
}; }
}
//# sourceMappingURL=row.js.map