skip to Main Content

Popper translation of MUI Autocomplete Component issue – Reactjs

I meet this issue using MUI Autocomplete component :(https://i.stack.imgur.com/q8YDj.png)(https://i.stack.imgur.com/ZzDox.png). The popper sometimes appear on the left, sometimes on the right of the text input, there is my code : <ThemeProvider theme={theme}> <Autocomplete disablePortal={true} id="combo-box-demo" options={technologies} sx={{ width: 300 }} className="nodrag"…

VIEW QUESTION

React MUI Accordion always open one – Reactjs

import React, { useState } from "react"; import { Accordion, AccordionDetails, AccordionSummary, Typography } from "@mui/material"; import ExpandMoreIcon from "@mui/icons-material/ExpandMore"; export default function DetailedAccordion() { const [expanded, setExpanded] = useState(null); const handleChange = (panel) => (event, isExpanded) => { setExpanded(isExpanded…

VIEW QUESTION
Back To Top
Search