import React, { useState } from 'react' import styled from 'styled-components' import ExpandMoreIcon from '@mui/icons-material/ExpandMore' import { Box, Collapse, Container, ContainerProps, Divider, Stack } from '@mui/material' import ExpandMore from './ExpandMore' import styles from './styles.module.scss' export default function CollapsibleBlock({ label, children, ...rest }) { const [expand, setExpand] = useState(false) function toggleExpand() { setExpand(!expand) } return (

{children}
) }