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

https://github.com/maheshj01/react-apps

A set of beginner to advanced apps built with React
https://github.com/maheshj01/react-apps

reactjs redux shadcn-ui tailwindcss template webapps

Last synced: 12 months ago
JSON representation

A set of beginner to advanced apps built with React

Awesome Lists containing this project

README

          

#### React-Apps

This repo contains basic react apps for beginners. To create a new react app, you can use the `create-react-app.sh` script which will help you setup a new React Project

This script does the following

- Creates a new react app with the name you provide
- Sets up Typescript, TailwindCSS, ShadCN UI, and the following folder structure

```bash
- app
- src
- assets/
- fonts/
- images/
- components/
- ui/
- Button.tsx
- context/
- hooks/
- routes/
- redux/
- actions/
- reducers/
- store.ts
- App.tsx
- index.tsx
- index.css
- utils.ts
- tsconfig.json
- tailwind.config.js
- package.json
- postcss.config.js
- README.md
```

### Usage

To create a new react app, run the following command

```bash
bash create-react-app.sh
````