Header.tsx 360 B

123456789
  1. import { View, Text } from "@tarojs/components";
  2. import './Header.scss'
  3. export default function Component(props: { title: string, action?: Function }) {
  4. return <View className="header">
  5. <Text className="header_title">{props.title}</Text>
  6. <Text className="header_action" onClick={() => { props.action!() }}>显示更多</Text>
  7. </View>
  8. }