add modal filter & responsive head doctors & buttons

This commit is contained in:
Ehsan
2024-08-17 20:32:07 +03:30
parent d3f967ca67
commit cd3b783abd
11 changed files with 168 additions and 37 deletions
+13
View File
@@ -0,0 +1,13 @@
import { FormControlLabel, Radio, RadioGroup } from "@mui/material"
function Radios({ group }) {
return (
<RadioGroup>
{group.map((item, idx) => (
<FormControlLabel value={idx} control={<Radio />} label={item} />
))}
</RadioGroup>
)
}
export default Radios