import React from 'react' import { useTranslation } from 'react-i18next' import s from './card.module.css' type PropType = { children: React.ReactNode text?: string } function Card({ children, text }: PropType) { const { t } = useTranslation() return (
{text ?? t('share.chat.powerBy')}
{children}
) } export default Card