Simple page with CRUD operation. Was made as training project to have some practical experience with React, Redux and some basic Node.js skills. Combined two tutorials: https://hashnode.com/post/simple-react-redux-app-civ45zywh03qdgc5327399ly0 http://www.thegreatcodeadventure.com/building-a-simple-crud-app-with-react-redux-part-1/#table-of-contents
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# run production server
npm run prod
# lint code
npm run lint
{
id: number,
fullName: string,
description: string,
tags: string,
contacts: string
}