aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/design/nested/customlayouts/CustomTabSheet.java
blob: cd899c49d12edd73e552abd90de608861c2f99c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.vaadin.tests.design.nested.customlayouts;

import com.vaadin.ui.Label;
import com.vaadin.ui.TabSheet;

/**
 * @author Vaadin Ltd
 */
public class CustomTabSheet extends TabSheet {
    public CustomTabSheet() {
        addComponent(new Label());
    }
}