syncTransition doesn't work properly
Closed this issue · 0 comments
fomkin commented
Consider the example:
document = { state =>
println("render")
Html(...)
}
// ...
access.syncTransition(identity) *> ZIO.logTrace("after transition")
Expected trace
render
after transition
Given
after transition
render