Files
AthenaFE/app/(tabs)/settings/index.tsx
T
2025-11-02 10:08:56 +01:00

8 lines
143 B
TypeScript

import { Redirect } from "expo-router";
const Settings = () => {
return <Redirect href="/settings/general" />;
};
export default Settings;