FeaturesSuspense IntegrationLearn how to integrate Saphyra with SuspenseCode example const newTodoStore = newStoreDef({ reducer({ state, set, diff, async, deps, action }) { if (action.type === "add-todo") { async().promise(async ({ signal }) => { await deps.addTodo(action.todo, signal) }) } }, })Optimistic StateLearn about the optimistic state in Saphyra.GuidesLearn how to implement useful solutions and patterns using Saphyra.