mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 09:09:01 +00:00
16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
import * as React from "react";
|
|
import LibraryTable from "./LibraryTable";
|
|
|
|
interface Props {}
|
|
|
|
export default class AlbumsTable extends React.Component<Props> {
|
|
render() {
|
|
return (
|
|
<LibraryTable
|
|
headings={["Album", "Tracks"]}
|
|
rows={[["All (1 album)", "1"], ["Ben Mason", "1"]]}
|
|
widths={[50, 200]}
|
|
/>
|
|
);
|
|
}
|
|
}
|