UNPKG

@tarojs/cli

Version:
17 lines (13 loc) 334 B
import { View, Text } from '@tarojs/components' import { useLoad } from '@tarojs/taro' import './index.<%= cssExt %>' export default function <%= _.capitalize(pageName) %>() { useLoad(() => { console.log('Page loaded.') }) return ( <View className='<%= pageName %>'> <Text>Hello world!</Text> </View> ) }