import React from "react"

type Props = {
    children?: any
    title?: string
}

const TabsItem = ({ children: children, title: title }: Props) => {


    return (
        <div>
            <div hidden>{title}</div>
            {children}
        </div>
    )
}
export default TabsItem