skip to Main Content

Reactjs – Mantine DatePickerInput rendering bug

I'm trying to use Mantine's DatePickerInput in my react app but there seems to be an issue with how the component is rendered. Expected behaviour Current Behaviour Library versions: "react": "^18.2.0", "@mantine/core": "^7.1.7", "@mantine/dates": "^7.1.7", Implementation: <DatePickerInput name={name} placeholder={placeholder} ref={ref}…

VIEW QUESTION

Nested Object not showing the component – Reactjs

Strangely, I have <Avatar> that works with single object parse using .map <Flex> <div></div> {studentsjson.map((thr) => ( <Avatar color="red" key={thr.id} component={Link} to="/complete"> {thr.Name} </Avatar> ))} </Flex> However, below does not work { teacher.map((thr) => thr.students.map((stu) => { <Avatar color="red" key={stu.id}…

VIEW QUESTION
Back To Top
Search