Add: app/eula.tsx screens/Authentication/EULAView.tsx Fix: - context/AuthContext.tsx - screens/Authentication/RegisterView.tsx - screens/RootLayout/AppRoot.tsx - service/api-config.ts ### No Issue
10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
import EULAView from "@/screens/Authentication/EULAView";
|
|
|
|
export default function EULA() {
|
|
return (
|
|
<>
|
|
<EULAView />
|
|
</>
|
|
);
|
|
}
|