Skip to content

Instantly share code, notes, and snippets.

View santosh-btc's full-sized avatar

Santosh Sharma santosh-btc

  • Japan
View GitHub Profile
import React from 'react';
import { Field, reduxForm } from 'redux-form';
function validate(values) {
const errors = {}
if (!values.firstName) {
errors.firstName = 'Required'
}
if (!values.lastName) {