Page MenuHomePhabricator

D3339.diff
No OneTemporary

D3339.diff

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>
);
}

File Metadata

Mime Type
text/plain
Expires
Sun, Nov 17, 10:37 PM (20 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2532143
Default Alt Text
D3339.diff (1 KB)

Event Timeline