8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import { Redirect } from "expo-router";
|
|
|
|
const DataProtection = () => {
|
|
return <Redirect href="/data-protection/general" />;
|
|
};
|
|
|
|
export default DataProtection;
|