IReactProperty Question
lucassouza1 opened this issue · 1 comments
lucassouza1 commented
Why IReactProperty
is defined as
type IReactProperty = interface end
instead of
type IReactProperty = (string * obj)
I'm trying to extend Giraffe.ViewEngine
to parse React
-ish components but that doens't work.
Thanks.
Zaid-Ajaj commented
I'm trying to extend Giraffe.ViewEngine to parse React-ish components but that doens't work.
Why isn't it working, can't you just unbox<(string * obj)> someProperty
?