mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
import { View, Text, Button } from "tamagui";
|
|
import React from "react";
|
|
import authStore from "@/stores/auth";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<View>
|
|
<Text>LoginPage</Text>
|
|
<Button onPress={() => authStore.setState({ token: "123" })}>
|
|
Login
|
|
</Button>
|
|
</View>
|
|
);
|
|
}
|