Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.44 KB

File metadata and controls

48 lines (29 loc) · 1.44 KB

[Form Builder]

Front End application oriented to create a simple one-page site or form to fill out by dragging the desired element onto the work surface

Technologies used

  • React single page application
  • Using build-ui to get better experience when creating form builder app
  • State management via Redux
  • For easy styling UI components using Bootsrap React
  • To get cool icons was used Font Awesome

Setup

  1. Clone the repository and install the dependencies
npm install
  1. Start the frontend application locally
npm start

Available commands

  • npm start: Start the app locally in your development environment, by default it will be in http://localhost:3000.
  • npm test: Run tests using watch mode.
  • npm lint: Run linter.

Linter

In order to lint the code, the project uses ESLint, which is provided by Create React App.

If you want to run the linter just type:

yarn lint

It's also convenient to integrate the linter warnings into your code editor, there are many plugins available for ESLint depending on your text editor used.

This app was bootstraped based on the template provided by create-react-app