mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 02:51:46 +00:00
7 lines
255 B
TypeScript
7 lines
255 B
TypeScript
import { customElement, type ComponentType } from 'solid-element';
|
|
|
|
export const anonymousCustomElement = <T extends object>(
|
|
ComponentType: ComponentType<T>,
|
|
): CustomElementConstructor =>
|
|
customElement(`ytmd-${crypto.randomUUID()}`, ComponentType);
|