Doing things without React
Everyone who has been working with REACT has come across a situation where he needs to render the same component for so many items. For example,
import Card from "./Components/Cards"
export default function App() {
const arr = [1,2,3,4,5,6]
ret...
itskaush.hashnode.dev2 min read