mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-22 08:47:10 +08:00
18 lines
398 B
TypeScript
18 lines
398 B
TypeScript
import { ScrollArea } from '@affine/admin/components/ui/scroll-area';
|
|
|
|
import { Header } from '../header';
|
|
import { AboutAFFiNE } from './about';
|
|
|
|
export function ConfigPage() {
|
|
return (
|
|
<div className="h-dvh flex-1 space-y-1 flex-col flex">
|
|
<Header title="Server" />
|
|
<ScrollArea>
|
|
<AboutAFFiNE />
|
|
</ScrollArea>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { ConfigPage as Component };
|