We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(rum/defc input1 < rum/reactive [ref & [attrs]] [:input (merge {:type "text" :value @ref :on-change #(reset! ref (.. % -target -value))} attrs)]) (rum/defc input2 < rum/reactive ([ref] (input ref nil) ([ref attrs] [:input (merge {:type "text" :value @ref :on-change #(reset! ref (.. % -target -value))} attrs)]))
I think the two defc calls above don't work. input1 causes:
defc
input1
WARNING: Use of undeclared Var fcc.app/& at line 12 /Users/martin/.boot/tmp/Users/martin/projects/fun-club/ta/-p9hf6h/fcc/app.cljs
input2 causes
input2
WARNING: Use of undeclared Var fcc.app/attrs at line 16 /Users/martin/.boot/tmp/Users/martin/projects/fun-club/30i/-p9hf6h/fcc/app.cljs
The text was updated successfully, but these errors were encountered:
First case should be fixed in 0.2.5, are you by any case using previous version?
Sorry, something went wrong.
5a690d5
No branches or pull requests
I think the two
defc
calls above don't work.input1
causes:input2
causesThe text was updated successfully, but these errors were encountered: