Skip to content

Commit 1d0e3b1

Browse files
committed
merger
1 parent c16f6a4 commit 1d0e3b1

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

app/src/components/bottom/CodePreview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import AceEditor from 'react-ace';
44
import { makeStyles } from '@material-ui/core/styles';
55
import 'ace-builds/src-noconflict/mode-javascript';
66
import 'ace-builds/src-noconflict/theme-monokai';
7-
import Button from '@material-ui/core/Button';
7+
// import Button from '@material-ui/core/Button';
88
import { Component } from '../../interfaces/Interfaces';
99

1010
const CodePreview = () => {

app/src/containers/MainContainer.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,14 @@ import React, { Component } from 'react';
22
import BottomPanel from '../components/bottom/BottomPanel';
33
import CanvasContainer from '../components/main/CanvasContainer';
44

5-
//test for resizable component
65
import { Resizable } from "re-resizable";
76

8-
// Main container contains the canvas which renders the components/elements on screen
9-
// and the bottom panel which displays the code for the component
107
class MainContainer extends Component {
118
render() {
129
return (
1310
<div className="main-container">
1411
<div
15-
className="main" //ref={main} **no function, commenting out**
12+
className="main"
1613
>
1714
<CanvasContainer />
1815
</div>

app/src/public/styles/style.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ RIGHT COLUMN
238238
/* display: flex;
239239
flex-direction: row; */
240240
background-color: #fcfcfc;
241-
/* box-shadow: 0 -5px 7px 2px rgb(255, 0, 0); */
242241
margin-right: 100px;
243242
}
244243

0 commit comments

Comments
 (0)