Skip to content
This repository has been archived by the owner on Dec 3, 2022. It is now read-only.

Resolve exports not found #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 4 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
import createTabNavigator from './createTabNavigator';
import TabView from './views/TabView';
import TabBarBottom from './views/TabBarBottom';
import TabBarTop from './views/TabBarTop';

module.exports = {
createTabNavigator,
TabView,
TabBarBottom,
TabBarTop,
};
export { default as createTabNavigator } from './createTabNavigator';
export { default as TabView } from './views/TabView';
import { default as TabBarBottom } from './views/TabBarBottom';
import { default as TabBarTop } from './views/TabBarTop';