// ** React Imports import { useState } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import Card from '@mui/material/Card' import Button from '@mui/material/Button' import Divider from '@mui/material/Divider' import Collapse from '@mui/material/Collapse' import CardMedia from '@mui/material/CardMedia' import Typography from '@mui/material/Typography' import IconButton from '@mui/material/IconButton' import CardContent from '@mui/material/CardContent' import CardActions from '@mui/material/CardActions' // ** Icons Imports import ChevronUp from 'mdi-material-ui/ChevronUp' import ChevronDown from 'mdi-material-ui/ChevronDown' const CardWithCollapse = () => { // ** State const [collapse, setCollapse] = useState(false) const handleClick = () => { setCollapse(!collapse) } return ( Popular Uses Of The Internet Although cards can support multiple actions, UI controls, and an overflow menu. {collapse ? : } I′m a thing. But, like most politicians, he promised more than he could deliver. You won′t have time for sleeping, soldier, not with all the bed making you′ll be doing. Then we′ll go with that data file! Hey, you add a one and two zeros to that or we walk! You′re going to do his laundry? I′ve got to find a way to escape. ) } export default CardWithCollapse