'use client' import type { FC } from 'react' import React from 'react' import Tooltip from '@/app/components/base/tooltip' export const Item: FC<{ title: string; tooltip: string; children: JSX.Element }> = ({ title, tooltip, children, }) => { return (
{title}
{tooltip}
} />
{children}
) }