Use Load.Units when a slice manages loading, pagination, refresh, and empty states. If the page already has an array, render Units directly with map, which is common in server-rendered pages.
Load.Units also hydrates slice state into the client store so generated pagination, query, sort, refresh, and insight helpers can keep working after the first render.
<model>List<Suffix>
The hydrated list rendered by Load.Units. This is the current visible list state.
<model>InitList<Suffix>
The first list snapshot from the server init object. It is useful for reset or comparison flows.
<model>InitAt<Suffix>
Timestamp for when the server initialized the list.
<model>ListLoading<Suffix>
Marks the list as ready after hydration.
<model>Insight<Suffix>
Insight data returned with the slice, such as count or summary values.
st.pageOf<Model><Suffix> / st.lastPageOf<Model><Suffix> / st.limitOf<Model><Suffix>
Pagination state hydrated from the init object.
st.queryArgsOf<Model><Suffix>
The current query arguments used to load the slice.
st.sortOf<Model><Suffix>
The current sort value used to load the slice.