UNPKG

@exezt-/webamp-custom

Version:

Winamp 2 implemented in HTML5 and JavaScript

12 lines (11 loc) 289 B
import { FilePicker } from "../types"; import Media from "../media"; interface Props { filePickers: FilePicker[]; media: Media; } /** * Constructs the windows to render */ export default function App({ media, filePickers }: Props): import("react").ReactPortal | null; export {};