This commit is contained in:
Ren Amamiya
2023-07-02 15:12:07 +07:00
parent 8a92813211
commit d35c64e28d
20 changed files with 589 additions and 88 deletions

View File

@@ -0,0 +1,7 @@
export function AccountSettingsScreen() {
return (
<div className="w-full h-full flex items-center justify-center">
<h1>Account</h1>
</div>
);
}

View File

@@ -0,0 +1,7 @@
export function GeneralSettingsScreen() {
return (
<div className="w-full h-full flex items-center justify-center">
<h1>General</h1>
</div>
);
}

View File

@@ -0,0 +1,7 @@
export function ShortcutsSettingsScreen() {
return (
<div className="w-full h-full flex items-center justify-center">
<h1>Shortcuts</h1>
</div>
);
}

View File

@@ -0,0 +1,7 @@
export function UpdateSettingsScreen() {
return (
<div className="w-full h-full flex items-center justify-center">
<h1>Update</h1>
</div>
);
}