Skip to content

Instantly share code, notes, and snippets.

@sayon-bitquery
Last active June 25, 2021 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sayon-bitquery/1d0d7e99a2199a8732cd0f839cdf7b68 to your computer and use it in GitHub Desktop.
Save sayon-bitquery/1d0d7e99a2199a8732cd0f839cdf7b68 to your computer and use it in GitHub Desktop.
tradingview-2:13
import * as React from 'react';
import './App.css';
import { TVChartContainer } from './components/TVChartContainer/index';
class App extends React.Component {
render() {
return (
<div className={ 'App' }>
<header className={ 'App-header' }>
<h1 className={ 'App-title' }>
TradingView Charting Library and Bitquery GraphQL API
</h1>
</header>
<TVChartContainer />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment