Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abhisek753/react-project-collection
https://github.com/abhisek753/react-project-collection
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abhisek753/react-project-collection
- Owner: Abhisek753
- Created: 2024-06-01T19:09:18.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-06-01T20:07:04.000Z (6 months ago)
- Last Synced: 2024-06-02T21:39:56.670Z (6 months ago)
- Language: JavaScript
- Size: 336 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Start
npm i redux react-redux axios react-router-dom@6Add Tailwind
npm install -D tailwindcss
npx tailwindcss init
Replace tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
Add in index.css
@tailwind base;
@tailwind components;
@tailwind utilities;