15 lines
488 B
TypeScript
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>
|
|
)
|
|
}
|