import type { JSX } from 'react' import { AppShell, Burger, Button, Flex } from '@mantine/core' import { Link } from 'tuono' import Actions from './actions' interface NavbarProps { opened: boolean toggle: () => void } export default function Navbar({ opened, toggle }: NavbarProps): JSX.Element { return ( ) }