import React from "react"; const Accordion = ({ children, title = "More" }) => (
{title} {children}
); export default Accordion;