mirror of
https://github.com/atlanticbiomedical/portal.git
synced 2025-07-01 18:17:26 -04:00
13 lines
278 B
Java
13 lines
278 B
Java
package com.biomed.client.ui;
|
|
|
|
import com.google.gwt.user.client.ui.Composite;
|
|
import com.google.gwt.user.client.ui.Label;
|
|
|
|
public class DashboardPanel extends Composite implements DashboardView {
|
|
|
|
public DashboardPanel() {
|
|
initWidget(new Label("DashboardPanel"));
|
|
}
|
|
|
|
}
|