Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.41 KB

README.md

File metadata and controls

43 lines (30 loc) · 1.41 KB

Sign Up Form

Live demo available here.

This is a sign up form built with React, Redux, and redux-form, and styled using SASS. It is my recreation of challenge 001 of the React Daily UI challenge by Fullstack React.

Empty Form Form Validation Original (Fullstack React)
empty form form validation empty form

Developer Setup

Clone the repo and cd into the newly-created 001-sign-up-form folder:

git clone https://github.com/CodeWithOz/001-sign-up-form.git
cd 001-sign-up-form/

Install dependencies and run the dev server:

npm install
npm start

Testing

Run npm test.

This project was bootstrapped with Create React App so all its cli options are available.

Building for production

I use forever to serve the app on the production server, so the serve script in the package.json file accounts for this (as explained here).