UNPKG

@socialwebfoundation/ap-components

Version:

A collection of Web Components for displaying objects from the ActivityPub API

16 lines (10 loc) 449 B
import { ActivityPubCollectionElement } from './ap-collection.js'; import { html, css } from 'https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js'; import { ActivityPubObject } from './ap-object.js'; export class ActivityPubObjectCollection extends ActivityPubCollectionElement { static _itemElement = ActivityPubObject; constructor() { super(); } } customElements.define('ap-object-collection', ActivityPubObjectCollection);