Fork of the excellent esp8266-react - https://github.com/rjwats/esp8266-react
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
351 B

  1. import React, { Component } from 'react';
  2. import MenuAppBar from '../components/MenuAppBar';
  3. import OTASettings from './OTASettings';
  4. class OTAConfiguration extends Component {
  5. render() {
  6. return (
  7. <MenuAppBar sectionTitle="OTA Configuration">
  8. <OTASettings />
  9. </MenuAppBar>
  10. )
  11. }
  12. }
  13. export default OTAConfiguration