CenterContentTitleModal.tsx 428 B

12345678910111213
  1. import { View, Text } from '@tarojs/components'
  2. import './CenterContentTitleModal.scss'
  3. export default function Component(props: { children: React.ReactNode, title: string }) {
  4. return <View className='center_content'>
  5. <Text className='center_content_title'>{props.title}</Text>
  6. <View className='center_content_detail'>
  7. {
  8. props.children
  9. }
  10. </View>
  11. </View>
  12. }