Skip to content

Instantly share code, notes, and snippets.

@pinguxx
Created March 31, 2019 03:30
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 pinguxx/8662ac7c8e360c88b5a3ac99c648ace6 to your computer and use it in GitHub Desktop.
Save pinguxx/8662ac7c8e360c88b5a3ac99c648ace6 to your computer and use it in GitHub Desktop.
import hyperHTMLApp from 'hyperhtml-app/index';
const happ = hyperHTMLApp();
happ.get('/', (ctx) => {
console.log("index");
});
happ.get('/info', (ctx) => {
console.log("info");
});
happ.navigate('/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment