reagent icon indicating copy to clipboard operation
reagent copied to clipboard

A minimalistic ClojureScript interface to React.js

Results 86 reagent issues
Sort by recently updated
recently updated
newest added

getStylesCreator.js:38 MUI: The `styles` argument provided is invalid. You are providing a function without a theme in the context. One of the parent elements needs to use a ThemeProvider. getStylesCreator.js:42...

getStylesCreator.js:38 MUI: The `styles` argument provided is invalid. You are providing a function without a theme in the context. One of the parent elements needs to use a ThemeProvider. getStylesCreator.js:42...

documentation

https://reactjs.org/docs/concurrent-mode-reference.html

enhancement

At least in some cases (maybe `:>` etc.) adding React key to item in a seq with metadata will trigger warning about missing key, if the key is `false`. False...

bug

It's quite finicky to reproduce. In the code below, if you replace `(> x 0)` with `(>= x 0)` it works as expected. When the breakpoint is hit, you can...

Input fields wrapper in `reagent.impl.input` ns gets into an infinite loop when an input field goes in focus immediately after it was set a value. Note that the loop is...

I've been working on a project for some time that integrates our existing reagent/re-frame application with some plain react components developed using [helix](https://github.com/lilactown/helix). In order to do this, I had...

enhancement

It is my impression that Reagent is the flagship project for implementing dynamic frontends in the Clojure world. So I was a little disappointed how long it took me to...

e.g. to support posh! ```clojure (defonce app-db (r/atom (or (unsave-app-db) {}))) (defonce conn (with-meta (r/cursor app-db [:ds-db]) {:listeners (atom {})})) (pr/posh! conn) ```