Files
lst_v3/lstMobile/src/app/(tabs)/dockScan.tsx
Blake Matthes ba30281e59
Some checks failed
Build and Push LST Docker Image / docker (push) Has been cancelled
feat(mobile): auth added in
2026-05-06 05:07:16 -05:00

27 lines
487 B
TypeScript

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