this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename to avoid conflicts with type

BK610 6a50883f 6fcc5591

+5 -5
+5 -5
components/LibraryCard.tsx components/LibraryCardItem.tsx
··· 1 1 import type LibraryCard from "@/types/LibraryCard"; 2 - import Button from "./Button"; 3 - import DragToRotateElement from "./effects/DragToRotateElement"; 4 - import FlashlightEffect from "./effects/FlashlightEffect"; 2 + import Button from "@/components/Button"; 3 + import DragToRotateElement from "@/components/effects/DragToRotateElement"; 4 + import FlashlightEffect from "@/components/effects/FlashlightEffect"; 5 5 6 6 interface LibraryCardProps { 7 7 libraryCard: LibraryCard; 8 - onClick: () => void; 8 + onClick: (arg: any) => void; 9 9 } 10 10 11 - export default function LibraryCard({ 11 + export default function LibraryCardItem({ 12 12 libraryCard, 13 13 onClick, 14 14 }: LibraryCardProps): React.ReactElement {