mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
14 lines
309 B
TypeScript
14 lines
309 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;
|