Files
lst_v3/lstMobile/src/app/(tabs)/logs.tsx
Blake Matthes cd13360cfb
Some checks failed
Build and Push LST Docker Image / docker (push) Has been cancelled
feat(intial auth): intial auth setup for the scanner
2026-05-05 19:48:36 -05:00

27 lines
473 B
TypeScript

import React from "react";
import { Text, View } from "react-native";
import { Button } from "../../components/ui/button";
export default function Logs() {
const getInfo = async () => {
const info = "ho";
console.log(info);
};
return (
<View
style={{
flex: 1,
//justifyContent: "center",
alignItems: "center",
marginTop: 50,
}}
>
<Text>Logs</Text>
<Button onPress={getInfo}>
<Text>Check info</Text>
</Button>
</View>
);
}