Skip to content

Instantly share code, notes, and snippets.

@ilkeryilmaz
Last active June 18, 2017 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilkeryilmaz/92c590378fc825b7b180116f0d52e8ee to your computer and use it in GitHub Desktop.
Save ilkeryilmaz/92c590378fc825b7b180116f0d52e8ee to your computer and use it in GitHub Desktop.
App-js
// 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