import React from "react"; export function RenderCounter({ name, children }) { const counter = React.useRef(1); return (
{name} rendered {counter.current++} times
LAST RENDER:{" "} {new Intl.DateTimeFormat([], { timeStyle: "long", }).format(new Date())}
{children}
); }