Implemented the search feature.

This commit is contained in:
M M
2024-05-10 19:53:18 -07:00
parent 0abda6fd21
commit dfdfb4f8b5
3 changed files with 43 additions and 0 deletions

View File

View File

@@ -0,0 +1,41 @@
import Autocomplete from '@mui/material/Autocomplete';
import TextField from '@mui/material/TextField';
import Chip from '@mui/material/Chip';
import Box from '@mui/material/Box';
const teamMembers = [
{ title: 'John Doe'},
{ title: 'Jane Smith'},
{ title: 'Alex Johnson'},
];
export default function Search() {
return (
<Box padding={10}> {/* Add padding to the container */}
<Autocomplete
multiple
id="tags-outlined"
options={teamMembers}
getOptionLabel={(option) => option.title}
filterSelectedOptions
renderInput={(params) => (
<TextField
{...params}
label="Team Members"
placeholder="Favorites"
/>
)}
renderTags={(value, getTagProps) =>
value.map((option, index) => (
<Chip
key={index}
variant="outlined"
label={option.title}
{...getTagProps({ index })}
/>
))
}
/>
</Box>
);
}

View File

@@ -1,4 +1,5 @@
import DropdownTeamMember from "../../Components/DropdownTeamMember";
import Search from "../../Components/Search";
import "./index.css";
const Home = () => {
@@ -6,6 +7,7 @@ const Home = () => {
<>
<div>Home</div>
<DropdownTeamMember />
<Search />
</>
);
};