import React, { Component } from 'react' import './SpecificationsFilterComponent.css' import FilterAltIcon from '@mui/icons-material/FilterAlt'; import Tippy from '@tippyjs/react'; import Popover from '@mui/material/Popover'; import Typography from '@mui/material/Typography'; import Button from '@mui/material/Button'; import FilterSelectComponent from './FilterSelectComponent'; import ArrowDropDownIcon from '@mui/icons-material/ArrowDropDown'; export class SpecificationsFilterComponent extends Component { constructor(props) { super(props) this.state = { anchorEl: null } } handleClick = (event) => { this.setState({ anchorEl: event.currentTarget }) }; handleClose = () => { this.setState({ anchorEl: null }) }; render() { const open = Boolean(this.state.anchorEl); const id = open ? 'specifications-popover' : undefined; return (

Спецификации

Филтер за спецификации

) } } export default SpecificationsFilterComponent