Created
March 28, 2015 00:22
-
-
Save aaronyo/9a77ae54f4ce07eed217 to your computer and use it in GitHub Desktop.
This file contains 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
function app (profile, appContent) { | |
return ( | |
$t( | |
'content', | |
style( | |
size('100%'), | |
flex({'flex-direction': 'column'}), | |
{ | |
'background-color': 'white', | |
'font-family': 'ProximaNovaBold', | |
'transition': 'transform 300ms' | |
}), | |
nav(), | |
$t( | |
'pane', | |
$profileView.render(profile, appContent)))); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment