feat: add auth, hosts, & keychains ownership

This commit is contained in:
2024-11-10 18:49:35 +07:00
parent b2cc6778a6
commit 38e81049a1
31 changed files with 579 additions and 92 deletions
+2 -13
View File
@@ -1,14 +1,3 @@
import { View, Text, Button } from "tamagui";
import React from "react";
import authStore from "@/stores/auth";
import LoginPage from "@/pages/auth/login";
export default function LoginPage() {
return (
<View>
<Text>LoginPage</Text>
<Button onPress={() => authStore.setState({ token: "123" })}>
Login
</Button>
</View>
);
}
export default LoginPage;