Javascript – What is the right point to store state data in a ReactJS app?
Here is a small React app that is using State and saves updated data to localStorage. You can create buttons by inputting the name and pressing Add button. import "./styles.css"; import { useState } from "react"; export default function App()…