UNPKG

radh-ui

Version:

Stencil Component Starter

19 lines (18 loc) 562 B
import { Component, h } from '@stencil/core'; import { select } from 'd3-selection'; export class RadhD3 { componentDidLoad() { select('#parrafo').style('color', 'green').style('font-size', '20px'); } render() { return (h("div", null, h("p", { id: "parrafo" }, "Linea de texto que contiene un parrafo en D3"))); } static get is() { return "radh-d3"; } static get originalStyleUrls() { return { "$": ["radh-d3.css"] }; } static get styleUrls() { return { "$": ["radh-d3.css"] }; } }