use of com.vaadin.flow.component.tabs.Tab in project flow by vaadin.
the class MainView method createTab.
private static Tab createTab(String text, Class<? extends Component> navigationTarget) {
final Tab tab = new Tab();
tab.add(new RouterLink(text, navigationTarget));
ComponentUtil.setData(tab, Class.class, navigationTarget);
return tab;
}
Aggregations