Can useMemo be used to memoize values that change over time, such as the current time?
No, useMemo is primarily used to memoize values based on their dependencies, so it's not suitable for memoizing values that change over time, such as the current time.