This project is a React application that provides a user interface to interact with the Express.js server and display employees data. The application fetches data from the backend API and presents it in a user-friendly manner.
frontend
├── src
│ ├── components
│ │ └── EmployeeList.js # Component to display the list of employees
│ ├── App.js # Main application component
│ ├── main.js # Entry point of the application
│ └── styles
│ └── App.css # CSS styles for the application
├── index.html # HTML template
├── package.json # NPM configuration file
└── README.md # Project documentation
└── tsconfig.json # TypeScript configuration
└── vite.config.ts # Vite configuration
- Clone the repository:
git clone <repository-url>
cd frontend/
- Install dependencies:
npm install
- Run the application:
npm run dev
Once the application is running, it will fetch employees data from the backend API and display it in a list format. You can view the application in your web browser at http://localhost:3000
.
This project is licensed under the MIT License.