add a simple page for the Screens in tab

This commit is contained in:
2024-12-06 23:02:26 +01:00
parent 0ab2fa2c32
commit c223989e9f
5 changed files with 93 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
import ThemedHeader from "@/src/components/themed/ThemedHeader";
import React from "react";
import ThemedBackground from "@/src/components/themed/ThemedBackground";
export default function ImageScreen() {
return (
<ThemedBackground>
<ThemedHeader>
Image Mode
</ThemedHeader>
</ThemedBackground>
);
}