import { Accordion, Stack, Text } from "@chakra-ui/react" import { LoremIpsum } from "react-lorem-ipsum" const items = [ { value: "a", title: "First Item", text: }, { value: "b", title: "Second Item", text: }, { value: "c", title: "Third Item", text: }, ] export const AccordionWithSubtext = () => { return ( {items.map((item, index) => ( {item.title} Click to expand {item.text} ))} ) }