An open API service indexing awesome lists of open source software.

https://github.com/ramirezmz/basic-crud

Crud App in Front end with React
https://github.com/ramirezmz/basic-crud

bootstrap reactjs redux

Last synced: 3 months ago
JSON representation

Crud App in Front end with React

Awesome Lists containing this project

README

          

# Basic CRUD



It's about CRUD, for those who dont't know CRUD is the composition of the first letter of 4 basic functions of a system that works with a database.

- C = Create
- R = Read
- U = Update
- D = Delete

## How to run the project?

1. Clone the repo
2. Install dependencies
```
npm install
// or
yarn
```
3. Run the project
```
npm start
```

## Ingredients

- ReactJS
- React Bootstrap
- Redux

## Project Structure

```
$PROJECT_ROOT
└── cypress
└── src
├── components # UI components
├── pages # Pages of the project
├── utils # Redux config + data
└── App.vue # Root component
└── main.ts # Entry point
```