webamp/js/components/MediaLibraryWindow/ArtistsTable.tsx
Jordan Eldredge b056b252d9 Revert "Rm media library (#957)"
This reverts commit d24b86e189.
2019-12-06 08:09:34 -08:00

19 lines
413 B
TypeScript

import * as React from "react";
import LibraryTable from "./LibraryTable";
interface Props {}
export default class ArtistsTable extends React.Component<Props> {
render() {
return (
<LibraryTable
headings={["Album", "Tracks", "Other"]}
rows={[
["All (1 album)", "1", "1"],
["Ben Mason", "1", "1"],
]}
widths={[100, 150, 200]}
/>
);
}
}