Skip to content

Commit

Permalink
Fix imports from index.js. Bump to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Zotov committed Jan 29, 2020
1 parent 6be9a74 commit 398e9d0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@navigationjs/react",
"version": "0.3.1",
"version": "0.3.2",
"description": "Small and well-tested React navigation",
"main": "dist/index.js",
"author": "Ivan Zotov <me@ivanzotov.com> (http://ivanzotov.com/)",
Expand Down
19 changes: 12 additions & 7 deletions src/index.js
@@ -1,9 +1,14 @@
import navigation, { Navigation, toId, fromId } from '@navigationjs/core';
import Stack from './src/Stack';
import Tab from './src/Tab';
import Modal from './src/Modal';
import Value from './src/Value';
import Wrap from './src/Wrap';
import navigation, {
Navigation,
Base,
Value,
toId,
fromId,
} from '@navigationjs/core';
import Stack from './Stack';
import Tab from './Tab';
import Modal from './Modal';
import Wrap from './Wrap';

export { Navigation, Stack, Tab, Modal, Value, Wrap, toId, fromId };
export { Navigation, Base, Stack, Tab, Modal, Value, Wrap, toId, fromId };
export default navigation;

0 comments on commit 398e9d0

Please sign in to comment.