7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
/** PettyCardContent — structural body section within a card. */
|
|
export class PettyCardContent extends HTMLElement {
|
|
connectedCallback(): void {
|
|
this.dataset.part = "content";
|
|
}
|
|
}
|