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-05 15:23:34 +00:00
|
|
|
|
|
|
|
export const Chat: FC = () => {
|
|
|
|
return (
|
2023-05-17 15:27:52 +00:00
|
|
|
<Page title="Chat" content={
|
|
|
|
<div className="flex flex-col gap-2 overflow-hidden">
|
|
|
|
<PresenceBadge/>
|
|
|
|
</div>
|
|
|
|
}/>
|
2023-05-05 15:23:34 +00:00
|
|
|
);
|
|
|
|
};
|