Created tags list page

This commit is contained in:
Alejandro Celaya
2018-08-16 18:59:00 +02:00
parent 03113583f0
commit 49290b56ee
12 changed files with 150 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ import burgerIcon from '@fortawesome/fontawesome-free-solid/faBars';
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
import classnames from 'classnames';
import './MenuLayout.scss';
import TagsList from '../tags/TagsList';
export class MenuLayout extends React.Component {
state = { showSideBar: false };
@@ -78,6 +79,11 @@ export class MenuLayout extends React.Component {
path="/server/:serverId/short-code/:shortCode/visits"
component={ShortUrlsVisits}
/>
<Route
exact
path="/server/:serverId/tags"
component={TagsList}
/>
</Switch>
</div>
</div>