react.nim icon indicating copy to clipboard operation
react.nim copied to clipboard

React.js bindings for Nim

Results 4 react.nim issues
Sort by recently updated
recently updated
newest added

eg: ```js class Greeting extends React.Component { render() { return ( Shopping List for {this.props.name} ); } } ``` ```nim proc makeGreeting(): ReactComponent = defineComponent: proc renderComponent(s: Greeting): auto =...

Any binding for React hooks? How would you best support this kind of functionality in Nim? For state management, I think dispatching Custom DOM Events is sufficient (see this approach...

Starting with React 15.5 the `React.createClass` [has been deprecated](https://reactjs.org/blog/2017/04/07/react-v15.5.0.html) and moved into its own module. Do you think it would be possible to generate the component code exactly the same...

When look at the reason-react, we have state, action, and reducer, I'm wondering if there is a corespondent design in react.nim