# Create a chart component
Now you’ll want to create a chart component with a realtime scale. Import chartjs-plugin-streaming and register it. Also, import the Line
chart component from react-chartjs-2 and render it specifying datasets and options.
# src/App.js
import React, { Component } from 'react';
import { Line, Chart } from 'react-chartjs-2';
import 'chartjs-adapter-luxon';
import StreamingPlugin from 'chartjs-plugin-streaming';
import './App.css';
Chart.register(StreamingPlugin);
class App extends Component {
render() {
return (
<Line
data={{
datasets: [{
data: []
}, {
data: []
}]
}}
options={{
scales: {
x: {
type: 'realtime'
}
}
}}
/>
);
}
}
export default App;