From 230980bec0799dcfce2236401fe026e3c4ded80e Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 5 Dec 2019 23:23:48 -0800 Subject: [PATCH] Remove Sidebar --- js/components/MediaLibraryWindow/Sidebar.tsx | 36 -------------------- js/components/MediaLibraryWindow/index.tsx | 3 +- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 js/components/MediaLibraryWindow/Sidebar.tsx diff --git a/js/components/MediaLibraryWindow/Sidebar.tsx b/js/components/MediaLibraryWindow/Sidebar.tsx deleted file mode 100644 index ff4d58c1..00000000 --- a/js/components/MediaLibraryWindow/Sidebar.tsx +++ /dev/null @@ -1,36 +0,0 @@ -import * as React from "react"; - -export default class Sidebar extends React.Component { - render() { - return ( -
-
-
    -
  • - Local Media -
      -
    • Audio
    • -
    • Video
    • -
    -
  • -
  • Playlist
  • -
  • - Devices -
      -
    • CD E:
    • -
    -
  • -
  • Internet Radio
  • -
  • Internet TV
  • -
-
-
- ); - } -} diff --git a/js/components/MediaLibraryWindow/index.tsx b/js/components/MediaLibraryWindow/index.tsx index 0632785f..66c5a2e5 100644 --- a/js/components/MediaLibraryWindow/index.tsx +++ b/js/components/MediaLibraryWindow/index.tsx @@ -1,5 +1,4 @@ import * as React from "react"; -import Sidebar from "./Sidebar"; import ArtistsTable from "./ArtistsTable"; import AlbumsTable from "./AlbumsTable"; import TracksTable from "./TracksTable"; @@ -9,7 +8,7 @@ export default class MediaLibraryWindow extends React.Component<{}> { render() { return ( } + sidebar={null} artists={} albums={} tracks={}