psychedelicious a41406ca9a perf(ui): optimize all selectors 1
I learned that the inline selector syntax recreates the selector function on every render:

```ts
const val = useAppSelector((s) => s.slice.val)
```

Not good! Better is to create a selector outside the function and use it. Doing that for all selectors now, most of the way through now. Feels snappier.
2024-08-30 22:20:12 +10:00
..
2024-03-26 14:48:29 +11:00
2024-08-30 22:20:12 +10:00
2023-07-28 09:46:44 -04:00