Skip to content

Instantly share code, notes, and snippets.

View mm0hammadi's full-sized avatar
🙂
Working from home

mm0hammadi

🙂
Working from home
  • Software Engineer
  • Tehran,Iran
View GitHub Profile
@Wellers0n
Wellers0n / MuiltSelect.tsx
Created January 4, 2023 18:58
MuiltSelect with mui
import { TextField } from '@mui/material';
import Autocomplete from '@mui/material/Autocomplete';
import { useFormikContext } from 'formik';
import React from 'react';
type OptionsValues = {
title: string,
value: string
}