Skip to content

Commit 6fe5813

Browse files
committed
feat: fully working
1 parent a95758c commit 6fe5813

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

src/components/AppSettings/NetworkSettings.tsx

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ export interface IProps {
44
onChange: (value: string) => void
55
}
66

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) => {
148
return (
159
<div>
1610
<form action="#" class="flex grow rounded-xl flex-col pl-4 pr-4 pb-4 pt-4 bg-[#333742]">
1711
<div>
1812
<div class="pb-6 pl-3 pr-3">
1913
<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>
2020
</div>
2121
</div>
2222
<div>
@@ -60,4 +60,4 @@ const OscSettings = (props: IProps) => {
6060
</div>
6161
)
6262
}
63-
export default OscSettings
63+
export default NetworkSettings

src/pages/AppSettings.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { debug } from 'tauri-plugin-log-api'
33
import AppSettings from '@src/views/AppSettings'
44

55
const AppSettingsPage = () => {
6-
7-
86
return (
97
<div class="flex justify-center items-center content-center flex-col pt-[100px] text-white">
108
<AppSettings

0 commit comments

Comments
 (0)