All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m33s
33 lines
615 B
TypeScript
33 lines
615 B
TypeScript
import React from "react";
|
|
import { Text, View } from "react-native";
|
|
|
|
export default function scanner() {
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
//justifyContent: "center",
|
|
alignItems: "center",
|
|
marginTop: 50,
|
|
}}
|
|
>
|
|
<View style={{ alignItems: "center", margin: 10 }}>
|
|
<Text style={{ fontSize: 20, fontWeight: "600" }}>LST Scanner</Text>
|
|
</View>
|
|
<View
|
|
style={{
|
|
marginTop: 50,
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<Text>Relocate</Text>
|
|
<Text>0 / 4</Text>
|
|
</View>
|
|
|
|
{/* <View>
|
|
<Text>List of recent scanned pallets TBA</Text>
|
|
</View> */}
|
|
</View>
|
|
);
|
|
}
|