2026-03-31 23:03:52 +07:00

7 lines
190 B
TypeScript

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