Skip to content

Commit 317f172

Browse files
committed
Remove comments from main component
1 parent 97e4350 commit 317f172

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

src/index.jsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
// import React from 'react';
2-
// import ReactDOM from 'react-dom';
3-
// import App from './components/App';
4-
5-
// ReactDOM.render(<App />, document.getElementById('main'));
6-
71
import LineGraph from './components/LineGraph';
82

93
export default LineGraph;
10-
11-
// import React, { useState } from "react";
12-
13-
// const ReactColorSquare = props => {
14-
// const { width, height, color, text } = props;
15-
// const [state, setState] = useState(0);
16-
// return (
17-
// <div
18-
// style={{
19-
// width: width || 100,
20-
// height: height || 100,
21-
// backgroundColor: color || "blue"
22-
// }}
23-
// >
24-
// hey bruh
25-
// {text}
26-
// </div>
27-
// );
28-
// };
29-
30-
// export default ReactColorSquare;

0 commit comments

Comments
 (0)