mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
17 lines
334 B
TypeScript
17 lines
334 B
TypeScript
import * as React from "react";
|
|
import LibraryTable from "./LibraryTable";
|
|
|
|
const AlbumsTable = React.memo(() => {
|
|
return (
|
|
<LibraryTable
|
|
headings={["Album", "Tracks"]}
|
|
rows={[
|
|
["All (1 album)", "1"],
|
|
["Ben Mason", "1"],
|
|
]}
|
|
widths={[50, 200]}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export default AlbumsTable;
|