WiFi Channel Settings.

This commit is contained in:
Robin Davies
2021-08-20 10:35:37 -04:00
parent 140f2abd39
commit f6aa331d77
40 changed files with 2409 additions and 597 deletions
+36
View File
@@ -0,0 +1,36 @@
import React from 'react';
import { Theme, withStyles, WithStyles,createStyles } from '@material-ui/core/styles';
const styles = (theme: Theme) => createStyles({
});
interface XxxProps extends WithStyles<typeof styles> {
theme: Theme,
};
interface XxxState {
};
const Xxx = withStyles(styles, { withTheme: true })(
class extends React.Component<XxxProps, XxxState> {
constructor(props: XxxProps)
{
super(props);
this.state = {
};
}
render() {
return (
<div/>
);
}
}
);
export default Xxx;