We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206984f commit df1c5edCopy full SHA for df1c5ed
src/index.ts
@@ -1,3 +1,11 @@
1
+/**
2
+ * Import order is important between recompose and rxjs.
3
+ * We need to import recompose first in order for it to polyfill observable symbol.
4
+ * @see https://stackoverflow.com/questions/53878650/you-provided-an-invalid-object-where-a-stream-was-expected-when-using-rxjs6-an.
5
+ */
6
+import 'recompose';
7
+
8
export { FullScreenPortal } from './FullScreenPortal';
9
export { Screen } from './Screen';
10
export { Canal } from './Canal';
11
+export { Navigation } from './Navigation';
0 commit comments