useReducer → alternative of useState hook
for small app → use useState
for larger apps → use useReducer along with contextApi
import "./styles.css";
import { useReducer } from "react";
export default function App() {
// state -> means current state...