mirror of
https://github.com/lordmathis/lemma.git
synced 2025-12-23 10:04:26 +00:00
23 lines
566 B
TypeScript
23 lines
566 B
TypeScript
import React from 'react';
|
|
import { Group, Text } from '@mantine/core';
|
|
import UserMenu from '../navigation/UserMenu';
|
|
import WorkspaceSwitcher from '../navigation/WorkspaceSwitcher';
|
|
import WorkspaceSettings from '../settings/workspace/WorkspaceSettings';
|
|
|
|
const Header: React.FC = () => {
|
|
return (
|
|
<Group justify="space-between" h={60} px="md">
|
|
<Text fw={700} size="lg">
|
|
Lemma
|
|
</Text>
|
|
<Group>
|
|
<WorkspaceSwitcher />
|
|
<UserMenu />
|
|
</Group>
|
|
<WorkspaceSettings />
|
|
</Group>
|
|
);
|
|
};
|
|
|
|
export default Header;
|