diff --git a/web/sidebar/app-switcher.react.js b/web/sidebar/app-switcher.react.js
new file mode 100644
index 000000000..b5f3cedf6
--- /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 ;
+}
+
+export default AppSwitcher;
diff --git a/web/sidebar/left-layout-aside.react.js b/web/sidebar/left-layout-aside.react.js
index 024b2339f..790c7ba9c 100644
--- a/web/sidebar/left-layout-aside.react.js
+++ b/web/sidebar/left-layout-aside.react.js
@@ -1,18 +1,18 @@
// @flow
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 (
);
}
export default LeftLayoutAside;