mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 02:12:53 +00:00
14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
import React from 'react';
|
|
|
|
export default class SensorInfo extends React.Component{
|
|
|
|
componentDidMount(){
|
|
this.props.sensorActions.fetchSensorInfoYear('Grand Meadow', '2016');
|
|
this.props.sensorActions.fetchSensorInfoMonth('Grand Meadow', '2016', 'May');
|
|
}
|
|
render(){
|
|
return(
|
|
<div class="Content">Test123</div>
|
|
);
|
|
}
|
|
} |