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
- Host: GitHub
- URL: https://github.com/maheshj01/react-apps
- Owner: maheshj01
- Created: 2024-08-28T01:34:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-11T16:29:31.000Z (about 1 year ago)
- Last Synced: 2025-03-19T16:18:45.746Z (12 months ago)
- Topics: reactjs, redux, shadcn-ui, tailwindcss, template, webapps
- Language: TypeScript
- Homepage: https://unsplash-lib.vercel.app
- Size: 1.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
````