14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { View } from "@tarojs/components"
|
|
import styles from './index.module.scss'
|
|
|
|
export default ({
|
|
state = '',
|
|
desc = ''
|
|
}) => {
|
|
return (
|
|
<View className={styles.order_flow_state}>
|
|
<View className={styles.order_flow_state_text}>{state}</View>
|
|
<View className={styles.order_flow_state_desc}>{desc}</View>
|
|
</View>
|
|
)
|
|
} |