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