summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/components/graph.header.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/views/graph/components/graph.header.js')
-rw-r--r--frontend/app/views/graph/components/graph.header.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/app/views/graph/components/graph.header.js b/frontend/app/views/graph/components/graph.header.js
index 46ad962..0766580 100644
--- a/frontend/app/views/graph/components/graph.header.js
+++ b/frontend/app/views/graph/components/graph.header.js
@@ -9,10 +9,12 @@ function GraphHeader(props) {
return (
<header>
<div>
- <Link to="/" className="logo"><b>{props.site.siteTitle}</b></Link>
+ <Link to="/" className="logo arrow">{"◁ "}</Link>
+ <b>{props.site.siteTitle}</b>
</div>
<div>
<button onClick={() => props.graphActions.toggleAddPageForm()}>+ Add page</button>
+ <button onClick={() => props.graphActions.toggleAudioList()}>+ Audio</button>
</div>
</header>
)