From 0fb3f3bf552276cafa8fe9f7779df06fb04f8c0b Mon Sep 17 00:00:00 2001 From: Llewellyn D'souza Date: Tue, 8 Mar 2022 16:10:59 +0530 Subject: [PATCH] Linted: search bar --- src/components/SearchBar/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/SearchBar/index.js b/src/components/SearchBar/index.js index 5a8e7ef..8467136 100644 --- a/src/components/SearchBar/index.js +++ b/src/components/SearchBar/index.js @@ -4,8 +4,7 @@ import { makeStyles } from '@mui/styles'; import Search from 'assets/images/SearchIcon'; function SearchBar(props) { - - const {onChange} = props; + const { onChange } = props; const useStyles = makeStyles(() => ({ textField: { @@ -41,5 +40,5 @@ function SearchBar(props) { SearchBar.propTypes = { onChange: PropTypes.func -} +}; export default SearchBar;