Interface AbsoluteDateProps

interface AbsoluteDateProps {
    long?: boolean;
    value: number;
}

Properties

Properties

long?: boolean
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.