reflect icon indicating copy to clipboard operation
reflect copied to clipboard

Easily render React components with everything you love from ☄️ effector.

Results 6 reflect issues
Sort by recently updated
recently updated
newest added

https://ant.design/components/table/#header ```ts const Data = reflect( view: Table, bind: { pagination: { total: $total, }, }, }) ```

feature

Related #34 #35 ### Motivation `variant` provides an API that allows us to render different components based on `$store` value, but `$store` value type is limited to string, and it's...

This RFC solves impossibility to combine `@effector/reflect` and `effector-factorio`, as well as adding protocol to integrate other dynamic bindings in a future ## How does it look? It looks like...

```ts const B = reflect({ view: A, bind: { foo: $data, }, mapProps: { bar: { source: $data, fn: (data, props) => data[props.key] } }, }) ```

feature

The `variant` operator has a strange limitation in the form of the need to cast the store to a string. It seems to me that its api needs to be...

RFC