|
|
@@ -0,0 +1,18 @@
|
|
|
+import { View, Text } from '@tarojs/components'
|
|
|
+import { useLoad } from '@tarojs/taro'
|
|
|
+import './index.scss'
|
|
|
+
|
|
|
+export default function Index() {
|
|
|
+
|
|
|
+ useLoad(() => {
|
|
|
+ console.log('Page loaded.')
|
|
|
+ })
|
|
|
+
|
|
|
+ return (
|
|
|
+ <View className='index'>
|
|
|
+ <Text>Hello world!</Text>
|
|
|
+ <Text>abc</Text>
|
|
|
+ <Text>123</Text>
|
|
|
+ </View>
|
|
|
+ )
|
|
|
+}
|