import s from './styles.module.scss'; type DocumentsProps = { title: string; description?: string; docs: string[]; }; function Documents({ title, description, docs }: DocumentsProps) { return (

{title}

{description}

); } export { Documents };