import { router } from 'expo-router';
import React from 'react';
import { Button, Platform, View } from 'react-native';
export default function TestPage() {
return {/* Put your testing components below */};
}
export const GoTestPageBTN = () => {
const onClick = () => {
router.push('/test');
};
return (
{/* */}
);
};