React - Practical Projects 3

[Project 3] Weather check app - open API, Postman, Context API, .env, Swiper, Recharts, Material-ui, React-icons

Open Weather Map API I will use the free option to build an app. Before starting to build, I will check this API first with Postman Put API key and other keys then we can get the values. Now make the project and components first to show the API data later. import React, { createContext } from "react"; export const WeatherContext = createContext({}); export default function WeatherProvider(childr..

[Project 2] Timetable - recoil, react-hook-form, material-ui, local storage

Organize the directory first. To make a table we make cell and row jsx files. We will put the selection of time near the timetable so for that, we will make an array of times. Use Material-ui to make a table format. import React from "react"; import { TableContainer, Typography, Table, TableHead, TableBody, TableRow, TableCell, } from "@mui/material"; const hourData = Array.from({ length: 11 }, ..