Skip to content

Commit

Permalink
changes to search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
WelldoneM committed Dec 6, 2024
1 parent 227a348 commit 1aefcf1
Showing 1 changed file with 1 addition and 31 deletions.
32 changes: 1 addition & 31 deletions src/components/common/SearchBar.tsx
Original file line number Diff line number Diff line change
@@ -1,34 +1,4 @@
// import { TextField, Box} from '@mui/material';

// interface SearchBarProps {
// searchQuery: string;
// setSearchQuery: (query: string) => void;
// }

// const SearchBar: React.FC<SearchBarProps> = ({
// searchQuery,
// setSearchQuery,
// }) => (
// <Box
// display='flex'
// alignItems='center'
// mt={3}
// mx={2}
// >
// <TextField
// label='Search organizations...'
// variant='outlined'
// fullWidth
// sx={{ marginRight: 1 }}
// value={searchQuery}
// onChange={(e) => setSearchQuery(e.target.value)}
// />
// </Box>
// );

// export default SearchBar;

import { TextField, Box } from '@mui/material';
import { TextField } from '@mui/material';

interface SearchBarProps {
searchQuery: string;
Expand Down

0 comments on commit 1aefcf1

Please sign in to comment.