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

https://github.com/mildronize/react-cookbook

react app collection
https://github.com/mildronize/react-cookbook

Last synced: about 1 year ago
JSON representation

react app collection

Awesome Lists containing this project

README

          

# React App Collections

- counter-redux-toolkit-typescript
- fetch-container-ssr-like
- fetch-container-ssr-like-hoc
- generic-table-render-editable-cell-2
- generic-table-render-reuse-react-component-with-generic-props-typescript-1
- guessnumber-hook
- simple-todo-crud
- simple-todo-crud-pure-store
- simple-todo-crud-redux
- todo-crud-bootstrap
- users-admin-crud-redux-toolkit-typescript

---

`counter-redux-toolkit-typescript`
# Counter App using Redux toolkit (typescript)

![counter-redux-toolkit-typescript preview](counter-redux-toolkit-typescript/preview.png)

[Live Preview by codesandbox](https://codesandbox.io/s/github/mildronize/react-apps/tree/master/counter-redux-toolkit-typescript)

---

`fetch-container-ssr-like`
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `yarn start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

---

`fetch-container-ssr-like-hoc`
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `yarn start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

---

`generic-table-render-editable-cell-2`

## Editable Cell: Reusable React Component with Generic Props (Typescript)

This app demonstrate the component for display table of the different data .

### Features
- 1 Display Table Component
- 2 Interface of data type
- Reuse them with only one component
- Editable Cell

[Live Preview by Codesandbox](https://codesandbox.io/s/github/mildronize/react-apps/tree/master/008-2-generic-table-render-editable-cell)

### Screenshot
![generic-table-render-editable-cell-2 preview](generic-table-render-editable-cell-2/preview.png)

---

`generic-table-render-reuse-react-component-with-generic-props-typescript-1`

## Reusable React Component with Generic Props (Typescript)

This app demonstrate the component for display table of the different data .

### Features
- 1 Display Table Component
- 2 Interface of data type
- Reuse them with only one component

[Live Preview by Codesandbox](https://codesandbox.io/s/github/mildronize/react-apps/tree/master/008-1-generic-table-render-reuse-react-component-with-generic-props-typescript)

### Screenshot
![generic-table-render-reuse-react-component-with-generic-props-typescript-1 preview](generic-table-render-reuse-react-component-with-generic-props-typescript-1/preview.png)

---

`guessnumber-hook`
## Guess Number Game using Hook

---

`simple-todo-crud`
# Simple TODO CRUD (Filterable)

![simple-todo-crud preview](simple-todo-crud/preview.png)

[Live Preview by codesandbox](https://codesandbox.io/s/github/mildronize/react-apps/tree/master/simple-todo-crud)

---

`simple-todo-crud-pure-store`

---

`simple-todo-crud-redux`

---

`todo-crud-bootstrap`

---

`users-admin-crud-redux-toolkit-typescript`
# Users Admin with Simple CRUD Redux Toolkit (Typescript)

## Features
- React Router
- Service (JSON API using `axios`)
- Store (Redux Toolkit)
- UI Component ( Ant Design)
- Create react app wrapper (Craco for less compiler (ant design))
- Responsive navbar (using Drawer for mobile)

## Start

```
yarn dev
```

Go to `http://localhost:3000/users`

## Screenshot

### Read
`src/features/admin/users/UsersPage.tsx`

![users-admin-crud-redux-toolkit-typescript preview](users-admin-crud-redux-toolkit-typescript/./preview-read.png)

---

## For building this file

```
node merge-md.js
```