Welcome to the React Currency Converter project! This project is a basic React application that showcases key concepts such as props drilling, hooks, and handling APIs. The app fetches live currency rates for all currencies and allows users to convert amounts into their preferred currencies. For styling, Tailwind CSS has been used.
This React application serves as a simple yet effective showcase of fundamental React concepts. It allows users to view live currency rates and convert amounts to their preferred currencies.
Props Drilling: Demonstrates the passing of data between React components using props, showcasing a clean and efficient data flow.
Hooks: Utilizes React hooks such as useState
and useEffect
to manage component state and handle side effects.
API Integration: Fetches live currency rates from an external API, showcasing the integration of external data into a React application.
Currency Conversion: Allows users to input an amount and select their preferred currencies for conversion.
Tailwind CSS Styling: The user interface is styled using Tailwind CSS, providing a modern and responsive design.
To get started with the project, follow these steps:
Clone the repository to your local machine:
```bash git clone https://github.com/AbhishekNavgan95/Currency-Converter-using-react.git cd Currency-Converter-using-react npm install npm start