esp8266-react-framework/interface/src/project/DemoController.js

23 lines
492 B
JavaScript
Raw Normal View History

2019-07-06 22:56:30 +00:00
import React, { Component } from 'react';
import { withStyles } from '@material-ui/core/styles';
import SectionContent from '../components/SectionContent';
const styles = theme => ({
});
class DemoController extends Component {
render() {
return (
<SectionContent title="Controller" titleGutter>
TODO - This will contain a form which controls the speed of the built in LED.
</SectionContent>
)
}
}
export default withStyles(styles)(DemoController);