提交 6952d58c 编写于 作者: T Tim Neutkens

Make sure examples adhere to code style

上级 e1d9ae27
......@@ -3,7 +3,7 @@ let LineChart
let Line
class Chart extends React.Component {
constructor () {
super();
super()
this.state = {
chart: false,
data: [
......@@ -13,15 +13,15 @@ class Chart extends React.Component {
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000},
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181},
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500},
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100},
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100}
]
}
}
componentDidMount() {
LineChart = require('recharts').LineChart;
Line = require('recharts').Line;
componentDidMount () {
LineChart = require('recharts').LineChart
Line = require('recharts').Line
this.setState({
chart: true
})
......@@ -31,9 +31,9 @@ class Chart extends React.Component {
return (
<div>
<h1>Another chart</h1>
{this.state.chart == true &&
{this.state.chart &&
<LineChart width={400} height={400} data={this.state.data}>
<Line type="monotone" dataKey="uv" stroke="#8884d8" />
<Line type='monotone' dataKey='uv' stroke='#8884d8' />
</LineChart>
}
</div>
......@@ -41,4 +41,4 @@ class Chart extends React.Component {
}
}
export default Chart
\ No newline at end of file
export default Chart
......@@ -5,7 +5,7 @@ let Line
class Index extends React.Component {
constructor () {
super();
super()
this.state = {
chart: false,
data: [
......@@ -15,15 +15,15 @@ class Index extends React.Component {
{name: 'Page D', uv: 2780, pv: 3908, amt: 2000},
{name: 'Page E', uv: 1890, pv: 4800, amt: 2181},
{name: 'Page F', uv: 2390, pv: 3800, amt: 2500},
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100},
{name: 'Page G', uv: 3490, pv: 4300, amt: 2100}
]
}
}
componentDidMount() {
LineChart = require('recharts').LineChart;
Line = require('recharts').Line;
componentDidMount () {
LineChart = require('recharts').LineChart
Line = require('recharts').Line
this.setState({
chart: true
})
......@@ -34,9 +34,9 @@ class Index extends React.Component {
<div>
<h1>Chart</h1>
<Link href='/chart'><a>Go to another chart</a></Link>
{this.state.chart == true &&
{this.state.chart &&
<LineChart width={400} height={400} data={this.state.data}>
<Line type="monotone" dataKey="uv" stroke="#8884d8" />
<Line type='monotone' dataKey='uv' stroke='#8884d8' />
</LineChart>
}
</div>
......@@ -44,4 +44,4 @@ class Index extends React.Component {
}
}
export default Index
\ No newline at end of file
export default Index
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册