diff --git a/web/sidebar/app-switcher.react.js b/web/sidebar/app-switcher.react.js
new file mode 100644
--- /dev/null
+++ b/web/sidebar/app-switcher.react.js
@@ -0,0 +1,11 @@
+// @flow
+
+import * as React from 'react';
+
+import NavigationPanel from './navigation-panel.react';
+
+function AppSwitcher(): React.Node {
+  return <NavigationPanel />;
+}
+
+export default AppSwitcher;
diff --git a/web/sidebar/left-layout-aside.react.js b/web/sidebar/left-layout-aside.react.js
--- a/web/sidebar/left-layout-aside.react.js
+++ b/web/sidebar/left-layout-aside.react.js
@@ -2,15 +2,15 @@
 
 import * as React from 'react';
 
+import AppSwitcher from './app-switcher.react';
 import CommunityPicker from './community-picker.react';
 import css from './left-layout-aside.css';
-import NavigationPanel from './navigation-panel.react';
 
 function LeftLayoutAside(): React.Node {
   return (
     <aside className={css.container}>
       <CommunityPicker />
-      <NavigationPanel />
+      <AppSwitcher />
     </aside>
   );
 }