Some checks failed
Build and Push LST Docker Image / docker (push) Has been cancelled
27 lines
487 B
TypeScript
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>
|
|
);
|
|
}
|