'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import cn from 'classnames' import type { IConfigProps } from '../config' import Config from '../config' import s from './style.module.css' const Line = ( ) const Init: FC = ({ ...configProps }) => { const { t } = useTranslation() return (
{t('explore.universalChat.welcome')}
{t('explore.universalChat.welcomeDescribe')}
{Line}
) } export default React.memo(Init)