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 ( Logs ); }