Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const app = Sammy('#main',function(){
  2.     this.get('#/home',()=>{
  3.         this.swap('<h1>Hello from the home page</h1>');
  4.     });
  5.     this.get('#/about',()=>{
  6.         this.swap('<h1>Hello from the about page</h1>');
  7.     });
  8.     this.get('#/contact',()=>{
  9.         this.swap('<h1>Hello from the contact page</h1>');
  10.     });
  11. });
  12. $(()=> app.run());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement