+ uri:
+ {uri}
+ {parameters.size > 0 ? (
+ <>
+ parameters:
+ {Array.from(parameters, ([key, value]) => (
+
+ {key}
+ {value ? `: ${value}` : ''}
+
+ ))}
+ >
+ ) : null}
+
+ );
+ }
+};
diff --git a/src/plugins/navigation/components/SearchBar.js b/src/plugins/navigation/components/SearchBar.js
index 2bfb15a32..abe5654a7 100644
--- a/src/plugins/navigation/components/SearchBar.js
+++ b/src/plugins/navigation/components/SearchBar.js
@@ -14,7 +14,7 @@ import {
Toolbar,
Glyph,
} from 'flipper';
-import SearchBarButton from './SearchBarButton';
+import {SearchBarButton} from './';
type Props = {|
onFavorite: (query: string) => void,
diff --git a/src/plugins/navigation/components/index.js b/src/plugins/navigation/components/index.js
new file mode 100644
index 000000000..5fb0c608f
--- /dev/null
+++ b/src/plugins/navigation/components/index.js
@@ -0,0 +1,11 @@
+/**
+ * Copyright 2018-present Facebook.
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ * @format
+ * @flow strict-local
+ */
+
+export {default as NavigationInfoBox} from './NavigationInfoBox';
+export {default as SearchBar} from './SearchBar';
+export {default as SearchBarButton} from './SearchBarButton';
diff --git a/src/plugins/navigation/index.js b/src/plugins/navigation/index.js
index f0835e293..cee9fef80 100644
--- a/src/plugins/navigation/index.js
+++ b/src/plugins/navigation/index.js
@@ -7,7 +7,7 @@
*/
import {FlipperPlugin, FlexColumn} from 'flipper';
-import SearchBar from './components/SearchBar';
+import {SearchBar} from './components';
type State = {||};
diff --git a/src/plugins/navigation/util/uri.js b/src/plugins/navigation/util/uri.js
new file mode 100644
index 000000000..bd4262489
--- /dev/null
+++ b/src/plugins/navigation/util/uri.js
@@ -0,0 +1,25 @@
+/**
+ * Copyright 2018-present Facebook.
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ * @format
+ * @flow strict-local
+ */
+
+import querystring from 'querystring';
+
+export const parseURIParameters: string => Map