Created
December 25, 2018 13:00
-
-
Save vshkl/b41f525d5762ca2fb2a032d5f64b4512 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import parts from './parts' | |
| ... | |
| const news = () => ({ | |
| component: { | |
| id: 'screen.NewsScreen', | |
| name: 'screen.NewsScreen', | |
| options: { | |
| bottomTab: parts.tab('news'), | |
| sideMenu: parts.sideMenuLeftEnabled(true), | |
| topBar: { | |
| title: { | |
| component: parts.headerWithText({ | |
| label: 'News', | |
| }), | |
| }, | |
| leftButtons: [ | |
| parts.buttonHamburger('screen.NewsScreen'), | |
| ], | |
| }, | |
| }, | |
| }, | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment