Skip to content

Test

Don't mind about this example, it's just something we developer use while developing Bagatell and haven't had time to remove before publishing this website ^^'

js
class MyApp extends App{
	
	createStartPage(){
		return new StartPage()
	}
	
}

class StartPage extends Page{
	
	createGui(){
		return Text(`Hello!`)
	}
	
}