Remove unnecessary container from PanelCanvas

This commit is contained in:
Gasim Gasimzada 2020-01-07 19:53:46 +04:00
parent 0fd29fa761
commit c46765382b

View file

@ -16,7 +16,6 @@ export const PanelCanvas: React.FC<PanelCanvasProps> = ({
}) => {
return (
<Panel title="Canvas">
<div className="panelColumn">
<h5>Canvas Background Color</h5>
<ColorPicker
color={viewBackgroundColor}
@ -29,7 +28,6 @@ export const PanelCanvas: React.FC<PanelCanvasProps> = ({
>
Clear canvas
</button>
</div>
</Panel>
);
};