11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import Layout from '@theme/Layout';
|
|
import { ReactNode } from 'react';
|
|
|
|
export function ChatPage(): ReactNode {
|
|
return (
|
|
<Layout title="Чат">
|
|
<main className="container margin-vert--lg">Hello world!</main>
|
|
</Layout>
|
|
);
|
|
}
|