Rev 2072 | AutorÃa | Ultima modificación | Ver Log |
import React from 'react'import { useSelector } from 'react-redux'import { Search } from '@mui/icons-material'import Input from './Input'const SearchBar = ({ onChange = () => null }) => {const labels = useSelector(({ intl }) => intl.labels)return (<Inputplaceholder={labels.search}onChange={(e) => onChange(e.target.value)}icon={Search}/>)}export default SearchBar