Interface AbsoluteTimestampProps

interface AbsoluteTimestampProps {
    value: number;
}

Properties

Properties

value: number

Server-sent Timestamp that was fetched from the backend. Unix time in seconds.

We use a number instead of Date because Dates are objects and would cause unnecessary re-renders. numbers are easier to memoize and to compare.