This commit is contained in:
josc146
2023-05-17 23:27:52 +08:00
parent df8eef5f64
commit 00257f2e68
15 changed files with 160 additions and 35 deletions

View File

@@ -1,10 +1,13 @@
import React, {FC} from 'react';
import {Text} from '@fluentui/react-components';
import {Page} from '../components/Page';
import {PresenceBadge} from '@fluentui/react-components';
export const Chat: FC = () => {
return (
<div className="flex flex-col box-border gap-5 p-2">
<Text size={600}>In Development</Text>
</div>
<Page title="Chat" content={
<div className="flex flex-col gap-2 overflow-hidden">
<PresenceBadge/>
</div>
}/>
);
};