Hi all
Does it exist IO module in reason?
I find the following code is weird:
didMount: self => {
self.send(Query);
ReasonReact.NoUpdate;
},
Because self.send(Query); raised a side effect, but didMount do not care about it.
Thanks