11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import React, {FC} from 'react';
|
|
import {Text} 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>
|
|
);
|
|
};
|