Romek Szwarc
Romek Szwarc
Here is how I used @fedek6 DocsContainer with MUI5 theme: ```js import { createTheme, CssBaseline, ThemeProvider } from "@mui/material"; import { getDesignTokens } from "theme/theme"; import { useDarkMode } from...
@averholantsev I had a similar problem and I ended up integrating react-number-format with texfield Here is an example with react-hook-form: [https://codesandbox.io/s/react-hook-form-number-format-custom-integration-2i82q](https://codesandbox.io/s/react-hook-form-number-format-custom-integration-2i82q?file=/src/index.js) ``` ```
@guiihlopes @kirill-konshin Autocomplete straight from material-ui can be used in this case: [https://material-ui.com/components/autocomplete/#asynchronous-requests](https://material-ui.com/components/autocomplete/#asynchronous-requests)
@guiihlopes @kirill-konshin Here's an example of react-select-material-ui & react-select-async-paginate with paginated lazy loaded drop down https://codesandbox.io/s/custom-select-base-forked-y1won?file=/src/App.jsx
I did it like this: ```js import { ErrorCode, useDropzone } from "react-dropzone"; [...] const onDrop = useCallback( (acceptedFiles, fileRejections) => { setFileErrorMsg(""); if (fileRejections.length) { const { file, errors...
Hi @Hank-Voight, Take a look at https://github.com/jonasstrehle/supercookie