RWKV-Runner/frontend/src/pages/Chat.tsx

17 lines
407 B
TypeScript
Raw Normal View History

2023-05-05 15:23:34 +00:00
import React, {FC} from 'react';
2023-05-17 15:27:52 +00:00
import {Page} from '../components/Page';
import {PresenceBadge} from '@fluentui/react-components';
2023-05-18 12:48:53 +00:00
import {useTranslation} from 'react-i18next';
2023-05-05 15:23:34 +00:00
export const Chat: FC = () => {
2023-05-18 12:48:53 +00:00
const {t} = useTranslation();
2023-05-05 15:23:34 +00:00
return (
2023-05-18 12:48:53 +00:00
<Page title={t('Chat')} content={
2023-05-17 15:27:52 +00:00
<div className="flex flex-col gap-2 overflow-hidden">
<PresenceBadge/>
</div>
}/>
2023-05-05 15:23:34 +00:00
);
};