1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

added tag searching router

This commit is contained in:
Fedor Katurov 2020-10-27 17:53:04 +07:00
parent 4da04bb970
commit f2289f4530
5 changed files with 80 additions and 0 deletions

View file

@ -31,6 +31,7 @@ import * as NODE_ACTIONS from '~/redux/node/actions';
import * as MODAL_ACTIONS from '~/redux/modal/actions';
import { IState } from '~/redux/store';
import { selectModal } from '~/redux/modal/selectors';
import { SidebarRouter } from '~/containers/main/SidebarRouter';
const mapStateToProps = (state: IState) => ({
node: selectNode(state),
@ -231,6 +232,8 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
<Footer />
</Card>
<SidebarRouter prefix="/post:id" />
</>
);
}