Update
This commit is contained in:
25
src/web/WiFi.tsx
Normal file
25
src/web/WiFi.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import {Component} from "react";
|
||||
|
||||
|
||||
interface WiFiState {
|
||||
|
||||
}
|
||||
|
||||
export default class WiFi extends Component<{}, WiFiState> {
|
||||
constructor(props: {}) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
|
||||
}
|
||||
|
||||
render() {
|
||||
return <p>Test</p>
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user