2022-04-06 11:47:19 +08:00

14 lines
266 B
TypeScript

import { View, Text } from '@tarojs/components'
import Test from '@/components/test'
import styles from './index.module.scss'
export default () => {
return (
<View className={styles.index}>
<Text>Hello world123!</Text>
<Test/>
</View>
)
}