This commit is contained in:
2024-03-27 00:32:01 +01:00
parent 6e163f67d5
commit 368e1c9712
20 changed files with 427 additions and 13 deletions

25
src/web/WiFi.tsx Normal file
View 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>
}
}