react-native-twopane-navigation
Version:
React Native package for dual screen devices navigation support (Surface Duo)
51 lines (37 loc) • 2.03 kB
text/typescript
// components
export {default as TwoPaneApp} from './components/twoPaneApp/TwoPaneApp'
export {default as TwoPaneHub} from './components/twoPaneHub/TwoPaneHub'
export {default as PaneOverlay} from './components/paneOverlay/PaneOverlay'
// methods
export {default as onePane} from './onePane/onePaneStore/onePane.methods'
export {default as twoPane} from './twoPane/twoPaneStore/twoPane.methods'
export {default as autoPane}from './utilities/autoPane.methods'
export {default as utility} from './utilities/utility.methods'
/// STORES ///
// header
export * from './shared/screenStore/headerStore/header.actions'
export * from './shared/screenStore/headerStore/header.interface'
export * from './shared/screenStore/headerStore/header.reducer'
export * from './shared/screenStore/headerStore/header.selector'
export * from './shared/screenStore/headerStore/header.types'
// key
export * from './shared/screenStore/keyStore/key.actions'
export * from './shared/screenStore/keyStore/key.interface'
export * from './shared/screenStore/keyStore/key.reducer'
export * from './shared/screenStore/keyStore/key.selector'
export * from './shared/screenStore/keyStore/key.types'
// element
export * from './shared/screenStore/paneElementStore/paneElement.action'
export * from './shared/screenStore/paneElementStore/paneElement.interface'
export * from './shared/screenStore/paneElementStore/paneElement.reducer'
export * from './shared/screenStore/paneElementStore/paneElement.selectors'
export * from './shared/screenStore/paneElementStore/paneElement.types'
// Utility
export * from './shared/utilityStore/utilityStore.actions'
export * from './shared/utilityStore/utilityStore.interfaces'
export * from './shared/utilityStore/utilityStore.methods'
export * from './shared/utilityStore/utilityStore.reducer'
export * from './shared/utilityStore/utilityStore.selectors'
export * from './shared/utilityStore/utilityStore.types'
// misc
export * from './utilities/interfaces'