Преглед изворни кода

add HashChanged component to DisplaySwitcher

Yuki Takei пре 4 година
родитељ
комит
d35887b2c1
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      packages/app/src/components/Page/DisplaySwitcher.jsx

+ 3 - 0
packages/app/src/components/Page/DisplaySwitcher.jsx

@@ -14,6 +14,7 @@ import ContentLinkButtons from '../ContentLinkButtons';
 import PageAccessories from '../PageAccessories';
 import PageEditorByHackmd from '../PageEditorByHackmd';
 import EditorNavbarBottom from '../PageEditor/EditorNavbarBottom';
+import HashChanged from '../EventListeneres/HashChanged';
 
 
 const DisplaySwitcher = (props) => {
@@ -66,6 +67,8 @@ const DisplaySwitcher = (props) => {
         </TabPane>
       </TabContent>
       {!isViewMode && <EditorNavbarBottom /> }
+
+      <HashChanged></HashChanged>
     </>
   );
 };