Feliz
Feliz copied to clipboard
IReactProperty Question
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.
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
?