Added command prompt, images list and image viewer components
This commit is contained in:
@@ -4,8 +4,8 @@ import {Link} from 'react-router-dom'
|
||||
|
||||
const SideBarTab = ({tab}) => {
|
||||
return (
|
||||
<li className={tab.activeClass ? 'active' : ''}>
|
||||
<Link href={tab.href}>
|
||||
<li className={`${tab.activeClass ? 'active' : ''} c-SideBarTab` }>
|
||||
<Link to={tab.href}>
|
||||
<i className={`fas ${tab.tabImage}`}></i>
|
||||
<span className="hideable hide">{tab.tabText}</span>
|
||||
</Link>
|
||||
@@ -13,13 +13,13 @@ const SideBarTab = ({tab}) => {
|
||||
className="collapse list-unstyled"
|
||||
id="pageSubmenu">
|
||||
<li>
|
||||
<Link href="#">Repo</Link>
|
||||
<Link to="#">Repo</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link href="#">Issues</Link>
|
||||
<Link to="#">Issues</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link href="#">Admin</Link>
|
||||
<Link to="#">Admin</Link>
|
||||
</li>
|
||||
</ul>)}
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user