Skip to content

Instantly share code, notes, and snippets.

@Duckuism
Last active September 13, 2020 11:34
Show Gist options
  • Save Duckuism/f98a4140086c1ebb4f347e259975937a to your computer and use it in GitHub Desktop.
Save Duckuism/f98a4140086c1ebb4f347e259975937a to your computer and use it in GitHub Desktop.
1
import React from "react";
import ReactDOM from "react-dom";
import { VictoryBar } from "victory";
class Main extends React.Component {
render() {
return (
<div>
<h1>Victory Tutorial</h1>
<VictoryBar />
</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