package com.zaranux.os.client.notifications;
import com.zaranux.os.client.core.Component;
import com.zaranux.os.client.core.ComponentContainer;
import com.zaranux.os.client.notifications.ui.NotificationListGrid;
public class NotificationComponent extends Component {
public NotificationComponent(ComponentContainer container)
{
super(container);
setWidget(new NotificationListGrid());
}
}