mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 09:09:01 +00:00
22 lines
617 B
TypeScript
22 lines
617 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 (
|
|
<React.StrictMode>
|
|
<LibraryLayout
|
|
sidebar={<Sidebar />}
|
|
artists={<ArtistsTable />}
|
|
albums={<AlbumsTable />}
|
|
tracks={<TracksTable />}
|
|
/>
|
|
</React.StrictMode>
|
|
);
|
|
}
|
|
}
|