expo-popcore-app/app/testLog.tsx

15 lines
488 B
TypeScript

import React from 'react'
import { View, Text } from 'react-native'
export default function TestLogScreen() {
console.log('========== TEST LOG SCREEN 渲染了 ==========')
console.log('如果你能看到这条日志,说明console.log正常工作')
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Text></Text>
<Text></Text>
</View>
)
}