aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/design/nested/customlayouts/CustomGridLayout.java
blob: be3e2b2b9783c5332794bdab4e621e5c1fdc12b3 (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.GridLayout;
import com.vaadin.ui.Label;

/**
 * @author Vaadin Ltd
 */
public class CustomGridLayout extends GridLayout {
    public CustomGridLayout() {
        this.addComponent(new Label());
    }
}