Backend.AI Web UI for web / desktop app (Windows/Linux/macOS). Backend.AI Web UI provides a convenient environment for users, while allowing various commands to be executed without CLI. It also provides some visual features that are not provided by the CLI, such as dashboards and statistics.
Sometimes, when using useMemo, you may need to utilize the previous value. To achieve this, let's implement a custom hook that memoizes not only the value of useMemo but also the previous value when the dependency list is updated.
Sometimes, when using
useMemo
, you may need to utilize the previous value. To achieve this, let's implement a custom hook that memoizes not only the value ofuseMemo
but also the previous value when the dependency list is updated.