📕 Added recently imported section to dashboard
This commit is contained in:
17
src/client/components/RecentlyImported.tsx
Normal file
17
src/client/components/RecentlyImported.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import React from "react";
|
||||
import Card from "./Card";
|
||||
import { map } from "lodash";
|
||||
|
||||
type RecentlyImportedProps = {
|
||||
comicBookCovers: any;
|
||||
};
|
||||
|
||||
export const RecentlyImported = ({
|
||||
comicBookCovers,
|
||||
}: RecentlyImportedProps) => (
|
||||
<section className="card-container">
|
||||
{map(comicBookCovers, (cover) => {
|
||||
return <Card comicBookCoversMetadata={cover.rawFileDetails} />;
|
||||
})}
|
||||
</section>
|
||||
);
|
||||
Reference in New Issue
Block a user