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