1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 10:22:53 +00:00
Files
mywebsite/client/js/components/sensors/SensorInfo.js
2016-09-05 18:27:52 +00:00

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>
);
}
}