Added git links to todo sidebar

This commit is contained in:
mrfry 2020-12-22 11:24:02 +01:00
parent 91e4e24ff7
commit 57f0730f3e
10 changed files with 329 additions and 90 deletions

View file

@ -3,6 +3,7 @@ import Link from 'next/link'
import tabs from '../data/tabs.json'
import constants from '../constants.json'
import BB from './b.js'
// FIXME: window resize event listener to show sidebar on resize
@ -70,6 +71,7 @@ export default function Layout(props) {
) : null}
</div>
<div className="content">{props.children}</div>
<BB />
</div>
)
}