Add basic pages for crushes and chat

This commit is contained in:
Niko 2022-02-12 01:00:16 +01:00
parent 0eddaed6a1
commit 4e7d4f042b
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
app.pages.chat = {
load: function(args) {
console.log('CHAT');
},
};

View File

@ -0,0 +1,5 @@
app.pages.crushes = {
load: function(args) {
console.log('CRUSHES');
},
};