private JPanel createLeftPanel(CubeView cubeView) {
JPanel panel = new JPanel(new BorderLayout(0, 5));
// Configuration
JPanel topPanel = new ConfigurationView(cubeModel);
panel.add(topPanel, BorderLayout.PAGE_START);
panel.add(cubeView, BorderLayout.CENTER);
return panel;
}