'use client' export const Client = ({ children }) => { const value = Date.now() return (
{value} {children}
) }