Przeglądaj źródła

add HashChanged component to DisplaySwitcher

Yuki Takei 4 lat temu
rodzic
commit
d35887b2c1

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

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