UNPKG

@socialwebfoundation/ap-components

Version:

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

15 lines (10 loc) 460 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 { ActivityPubActivity } from './ap-activity.js'; export class ActivityPubActivityCollection extends ActivityPubCollectionElement { static _itemElement = ActivityPubActivity; constructor() { super(); } } customElements.define('ap-activity-collection', ActivityPubActivityCollection);