import React, { ReactNode } from 'react'; // this helps rendering the item key inside the card instead of inspecting in in react-dev-tools export function DebugItemKeyRecycler({ children }: { children?: ReactNode }) { return (
{children}
); }