public class SampleEntryPoint implements EntryPoint {
@Override
public void onModuleLoad() {
// Create the object graph - a real application would use Gin
SimpleEventBus eventBus = new SimpleEventBus();
SidebarPresenter sidebarPresenter = new SidebarPresenter(eventBus);
Button sidebarView = new Button("Contacts");
sidebarView.getElement().getStyle().setFloat(Style.Float.LEFT);
sidebarView.getElement().getStyle().setMarginRight(20, Unit.PX);