This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / components / navigation / header / Header.tsx
510 B 21 lines
1import { Box, Divider, Group, Paper } from '@mantine/core'; 2import NavbarToggle from '../NavbarToggle'; 3import { ReactElement } from 'react'; 4 5interface Props { 6 children?: ReactElement; 7} 8 9export default function Header(props: Props) { 10 return ( 11 <Paper pos={'sticky'} top={0} style={{ zIndex: 1 }}> 12 <Group gap={'xs'} p={'xs'} justify="space-between"> 13 {props.children} 14 <Box ml={'auto'}> 15 <NavbarToggle /> 16 </Box> 17 </Group> 18 <Divider /> 19 </Paper> 20 ); 21}