skip to Main Content

Reactjs – MUI – join Avatars with a dotted line

I have a Stack of Avatars, with text: <Stack> <span><Avatar sx={{ float:'left', width: 30, height: 30, margin: 1, backgroundColor: '#c00500' }} variant="square">C</Avatar>Today</span> <span><Avatar sx={{ float:'left', width: 30, height: 30, margin: 1, backgroundColor: '#05C000' }} variant="square">V</Avatar>Yesterday</span> <span><Avatar sx={{ float:'left', width: 30,…

VIEW QUESTION

Javascript – React, confused in useState

Can anyone explaine me please, just start learn React, I'm confused in one thing in this code: import { useState } from "react"; import ReactDOM from "react-dom/client"; function Car() { const [car, setCar] = useState({ brand: "Ford", model: "Mustang", year:…

VIEW QUESTION
Back To Top
Search