chore: cleanup unused files and reorganize dependencies

Updates Biome schema to latest version and removes template files that are no longer needed.

Moves expo-dev-client to devDependencies where it belongs for development-only usage.
This commit is contained in:
Uruk
2025-10-02 22:33:03 +02:00
parent 7b6fe0a6c0
commit be745dc136
4 changed files with 3 additions and 21 deletions

View File

@@ -1,12 +0,0 @@
import { View, type ViewProps } from "react-native";
import { Text } from "@/components/common/Text";
interface Props extends ViewProps {}
export const TitleHeader: React.FC<Props> = ({ ...props }) => {
return (
<View {...props}>
<Text />
</View>
);
};