nope/resources/ui/defaultNavbar.tsx
2020-10-29 19:20:42 +01:00

23 lines
416 B
TypeScript

import React from "react";
import Toolbar from "./layout/toolbar";
export default function DefaultNavbar(props) {
return (
<Toolbar<undefined> toolbar={{
items: [
{
type: 'link',
ref: '/docs',
label: 'docs'
}
]
}} generateData={() => undefined} brand={{
label: 'nopeBackend',
ref: '/',
type: 'link'
}}>
</Toolbar>
)
}