Commit 6fe5813 1 parent a95758c commit 6fe5813 Copy full SHA for 6fe5813
File tree 2 files changed +8
-10
lines changed
2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ export interface IProps {
4
4
onChange : ( value : string ) => void
5
5
}
6
6
7
- const OscSettings = ( props : IProps ) => {
8
- /* // TODO: call api to download firmware assets
9
- const handleSubmit = (e: SubmitEvent) => {
10
- e.preventDefault()
11
- console.log(`${props.name} [Select]: `, value())
12
- } */
13
-
7
+ const NetworkSettings = ( props : IProps ) => {
14
8
return (
15
9
< div >
16
10
< form action = "#" class = "flex grow rounded-xl flex-col pl-4 pr-4 pb-4 pt-4 bg-[#333742]" >
17
11
< div >
18
12
< div class = "pb-6 pl-3 pr-3" >
19
13
< p class = "text-start text-2xl" > Network settings</ p >
14
+ < div class = "text-white flex flex-col items-center justify-center h-full w-full p-2" >
15
+ < div class = "card rounded-md bg-slate-700" >
16
+ < h1 class = "text-2xl font-bold" > Coming Soon</ h1 >
17
+ < p class = "mt-4 text-gray-400 text-lg" > 😞</ p >
18
+ </ div >
19
+ </ div >
20
20
</ div >
21
21
</ div >
22
22
< div >
@@ -60,4 +60,4 @@ const OscSettings = (props: IProps) => {
60
60
</ div >
61
61
)
62
62
}
63
- export default OscSettings
63
+ export default NetworkSettings
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ import { debug } from 'tauri-plugin-log-api'
3
3
import AppSettings from '@src/views/AppSettings'
4
4
5
5
const AppSettingsPage = ( ) => {
6
-
7
-
8
6
return (
9
7
< div class = "flex justify-center items-center content-center flex-col pt-[100px] text-white" >
10
8
< AppSettings
You can’t perform that action at this time.
0 commit comments