webamp/js/components/MediaLibraryWindow/index.tsx
2019-05-09 09:31:31 -07:00

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>
);
}
}