Footer.tsx 205 B

123456789
  1. import { View } from '@tarojs/components'
  2. import './Footer.scss'
  3. export default function Component(props: { children: any }) {
  4. return <View className='footer1'>
  5. {props.children}
  6. </View>
  7. }