mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 00:59:29 +00:00
20 lines
554 B
TypeScript
20 lines
554 B
TypeScript
import * as React from "react";
|
|
import "../../../css/media-library-window.css";
|
|
import Sidebar from "./Sidebar";
|
|
import ArtistsTable from "./ArtistsTable";
|
|
import AlbumsTable from "./AlbumsTable";
|
|
import TracksTable from "./TracksTable";
|
|
import LibraryLayout from "./LibraryLayout";
|
|
|
|
export default class MediaLibraryWindow extends React.Component<{}> {
|
|
render() {
|
|
return (
|
|
<LibraryLayout
|
|
sidebar={<Sidebar />}
|
|
artists={<ArtistsTable />}
|
|
albums={<AlbumsTable />}
|
|
tracks={<TracksTable />}
|
|
/>
|
|
);
|
|
}
|
|
}
|