Skip to content

Commit

Permalink
feat(filters): hide filtered stories
Browse files Browse the repository at this point in the history
  • Loading branch information
KatvonRivia committed Apr 28, 2021
1 parent ec4a003 commit 425faa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/components/main/navigation/navigation.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {FunctionComponent, useState} from 'react';
import React, {FunctionComponent} from 'react';
// import {useDispatch, useSelector} from 'react-redux';

import Button from '../button/button';
Expand All @@ -18,7 +18,7 @@ import styles from './navigation.styl';

const Navigation: FunctionComponent = () => {
// const dispatch = useDispatch();
const [showMenu, setShowMenu] = useState(false);
// const [showMenu, setShowMenu] = useState(false);
// const selectedLanguage = useSelector(languageSelector);
// const savedLanguage = localStorage.getItem(config.localStorageLanguageKey);
// const [showLanguageBubble, setShowLanguageBubble] = useState<boolean>(
Expand Down

0 comments on commit 425faa3

Please sign in to comment.