Просмотр исходного кода

add HashChanged component to DisplaySwitcher

Yuki Takei 4 лет назад
Родитель
Сommit
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>
     </>
   );
 };