14 lines
266 B
TypeScript
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>
|
|
)
|
|
}
|