2024-11-08 18:53:30 +00:00

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>
);
}