add tabs (prototype)

This commit is contained in:
2024-12-06 21:24:17 +01:00
parent 879f85290f
commit 0ab2fa2c32
14 changed files with 113 additions and 111 deletions
View File
View File
View File
+14
View File
@@ -0,0 +1,14 @@
import ThemedHeader from "@/src/components/themed/ThemedHeader";
import ThemedBackground from "@/src/components/themed/ThemedBackground";
export default function TextScreen() {
return (
<ThemedBackground>
<ThemedHeader>
Text Mode
</ThemedHeader>
</ThemedBackground>
);
}