- {ids.map((id: string) => (
-
+
+ {ids.map((id, i) => (
+ 3 && "hidden 2xl:block"}
+ />
))}
@@ -66,11 +71,22 @@ const ResourceRow = ({ type }: { type: UsableResource }) => {
);
};
-const RecentCard = ({ type, id }: { type: UsableResource; id: string }) => {
+const RecentCard = ({
+ type,
+ id,
+ className,
+}: {
+ type: UsableResource;
+ id: string;
+ className: string | false;
+}) => {
const Components = ResourceComponents[type];
const tags = Components.list_item(id)?.tags;
return (
-