Last active
June 18, 2017 20:02
-
-
Save ilkeryilmaz/92c590378fc825b7b180116f0d52e8ee to your computer and use it in GitHub Desktop.
App-js
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
// Page All Components | |
const components = (function(){ | |
// Menu | |
let menu = function(){ | |
} | |
// Search | |
let search = function(){ | |
} | |
// All Slider | |
let slider = function(){ | |
// Tabs | |
let tab = function(){ | |
} | |
let init = function(){ | |
menu(); | |
search(); | |
slider(); | |
tab(); | |
} | |
return { | |
init: init, | |
}; | |
})(); | |
// Start | |
components.init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment