import Container from './Container'
import Wave from './Wave'
const Docs = ({ header, description, subheader, children }:DocsProps):JSX.Element => {
return <>
{header}
{description}
{subheader}
{children}
>
}
export default Docs
interface DocsProps {
header: string
description?: string
subheader?: string
children: JSX.Element | JSX.Element[]
}