Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-priyanshu15 authored Dec 19, 2024
1 parent 5556807 commit efe7e0a
Showing 1 changed file with 52 additions and 10 deletions.
62 changes: 52 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,58 @@ A modern React-based news application that provides a clean interface for browsi
## Project Structure

```
src/
├── app/
│ └── store.js # Redux store configuration
├── components/ # Reusable UI components
├── features/
│ └── news/ # News-related redux slice and API
├── hooks/ # Custom React hooks
├── layouts/ # Layout components
├── pages/ # Main application pages
└── utils/ # Helper functions and constants
Project Name: HaalSamachar
├── .github/
│ └── (GitHub-specific configuration files)
├── public/
│ └── vite.svg
├── src/
│ ├── app/
│ │ └── store.js
│ ├── assets/
│ │ └── react.svg
│ ├── components/
│ │ ├── CategoryList.jsx
│ │ ├── Footer.jsx
│ │ ├── Header.jsx
│ │ ├── Image.jsx
│ │ ├── NewsItem.jsx
│ │ ├── NewsItemFooter.jsx
│ │ ├── NewsItemHeader.jsx
│ │ ├── NewsList.jsx
│ │ ├── Pagination.jsx
│ │ └── SearchBar.jsx
│ ├── features/
│ │ └── news/
│ │ ├── newsApi.js
│ │ └── newsSlice.js
│ ├── hooks/
│ │ └── useFetchNews.js
│ ├── layouts/
│ │ └── AppLayout.jsx
│ ├── pages/
│ │ ├── BookmarkPage.jsx
│ │ ├── DetailsPage.jsx
│ │ ├── HomePage.jsx
│ │ ├── SearchPage.jsx
│ │ └── index.js
│ ├── utils/
│ │ └── (Utility functions or helper files, if any)
│ ├── App.jsx
│ ├── index.css
│ ├── main.jsx
│ └── index.html
├── .eslintrc.cjs
├── .gitignore
├── README.md
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── tailwind.config.js
├── vercel.json
└── vite.config.js
```

## **Screenshots**
Expand Down

0 comments on commit efe7e0a

Please sign in to comment.