Add a view to get started. Here's a simple Hello World:
@Route("") // map view to the root
class MainView extends VerticalLayout {
MainView() {
add(new H1("Hello, world"));
}
}
Learn more at https://vaadin.com/docs.