import { AbsoluteCenter, Accordion, Box, Button, Span } from "@chakra-ui/react" import LoremIpsum from "react-lorem-ipsum" export const AccordionWithActions = () => { return ( {items.map((item, index) => ( {item.title} {item.text} ))} ) } const items = [ { value: "a", title: "First Item", text: }, { value: "b", title: "Second Item", text: }, { value: "c", title: "Third Item", text: }, ]