export default function Reflection({ timeTaken, children, open = false }) { return (
Thought for {(timeTaken || 0).toFixed(0)} seconds
{children}
); }