source: sources/client/src/utils/onClickRouting.js

Last change on this file was 3a58bd6, checked in by Viktor <39170279+Tasevski2@…>, 3 years ago

Added Frontend

  • Property mode set to 100644
File size: 220 bytes
Line 
1export default function onClickRouting(path, history) {
2 const currentPath = history.location.pathname;
3 if (currentPath === path) {
4 history.replace(path);
5 return;
6 }
7 history.push(path);
8};
9
Note: See TracBrowser for help on using the repository browser.