import type { JSX, ReactNode } from "react" // As it is just a mock, I defintely do not need a state of the art implementation export function Collapsible({ children, }: { children: ReactNode }): JSX.Element { return
{children}
}