Hiding sidebar on click on mobile

This commit is contained in:
MrFry 2020-03-15 12:04:42 +01:00
parent 6688a1417d
commit 98d2fb5e85
2 changed files with 15 additions and 35 deletions

View file

@ -1,32 +0,0 @@
import React, { PureComponent } from 'react'
import links from './links.json'
import constants from '../constants.json'
// TODO: aludni
class HomeTab extends PureComponent {
render () {
return (<div>HAAAAAAAAAA</div>)
// return (
// <div>
// {Object.keys(links).map((key) => {
// const link = links[key]
// return (
// <div
// className='link'
// key={key}
// >
// <a
// href={constants.serverUrl + link.href}
// >
// {link.text}
// </a>
// </div>
// )
// })}
// </div>
// )
}
}
export default HomeTab