refactor(scan): bump in build and style update

This commit is contained in:
2026-05-08 15:05:47 -05:00
parent 1ff5e5032f
commit 505d7cea5d
4 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
import React from "react";
import { Text, View } from "react-native";
import { Button } from "../../components/ui/button";
export default function PPOO() {
return (
<View
style={{
flex: 1,
//justifyContent: "center",
alignItems: "center",
marginTop: 50,
}}
>
<Text>Ppo checks</Text>
</View>
);
}