Co-authored-by: xiuting.xu <xiutingxt.xu@gmail.com> Reviewed-on: #21 Reviewed-by: huhy <husteryezi@163.com> Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn> Reviewed-by: yuyr <yuyr@zgclab.edu.cn>
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
import { Group, Text } from "@mantine/core";
|
|
import { SystemIcon } from "../components/SystemIcon";
|
|
|
|
export default function HeaderBar() {
|
|
return (
|
|
<Group justify="space-between" h="100%" px="md">
|
|
<Group spacing="sm" align="center">
|
|
<SystemIcon size={32} />
|
|
<Text fw={700}>GPU 集群运维系统</Text>
|
|
</Group>
|
|
</Group>
|
|
);
|
|
}
|