Skip to content

Instantly share code, notes, and snippets.

@Duckuism
Last active September 13, 2020 12:50
Show Gist options
  • Save Duckuism/580ae9932dfe95ab9125856a449d3c25 to your computer and use it in GitHub Desktop.
Save Duckuism/580ae9932dfe95ab9125856a449d3c25 to your computer and use it in GitHub Desktop.
2
import React from "react";
import ReactDOM from "react-dom";
//데이터 코드 추가
const data = [
{ quarter: 1, earnings: 13000 },
{ quarter: 2, earnings: 16500 },
{ quarter: 3, earnings: 14250 },
{ quarter: 4, earnings: 19000 },
];
class Main extends React.Component {
render() {
return (
<div>
<h1>Victory Tutorial</h1>
</div>
);
}
}
const app = document.getElementById("app");
ReactDOM.render(<Main />, app);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment