Category: Uncategorized

Form Handling with Reactjs – Easy Guide

In this tutorial we are going to create simple member registration form with Reactjs. Form data handling is much more easier with Reactjs. Form validations are discussed in later. import React from 'react'; export default class form extends React.Component { constructor(props) { super(props); this.state = { fname: "", lname:"", city:"" } }; updateState(e, name) {

Reactjs 15 Vs 16 – Complete Lookup

Here we are discussing new features added to new Reactjs 16 which was released at the end of 2017.  There are cool and awesome stuff to discussed. Everything you may need to know will be listed below. 1. Add new Render types called fragments and strings In render method you can now return array of elements and