Guest User

Untitled

a guest
May 20th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import BarChart from './Bar';
  3.  
  4. class App extends Component {
  5. render() {
  6. return <BarChart data={[5, 8, 14, 15, 22, 34]} />;
  7. }
  8. }
  9.  
  10. export default App;
Add Comment
Please, Sign In to add comment