Skip to content

Commit 53246f4

Browse files
committed
Add tickets link to navbar
1 parent c81af85 commit 53246f4

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

frontend/src/components/navbar/index.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import React from 'react';
33
import { Menu } from 'react-feather';
44
import { Box } from '../box';
55
import { Logo } from '../logo';
6+
import { ButtonLink } from '../button';
67

78
export class Navbar extends React.Component<{}, {}> {
89
render() {
@@ -13,6 +14,15 @@ export class Navbar extends React.Component<{}, {}> {
1314
</Box>
1415

1516
<Logo />
17+
18+
<ButtonLink
19+
href="/"
20+
style={{
21+
marginLeft: 'auto'
22+
}}
23+
>
24+
Tickets
25+
</ButtonLink>
1626
</Box>
1727
);
1828
}

0 commit comments

Comments
 (0)