index.tsx 223 B

1234567891011121314
  1. import React from 'react'
  2. import { View } from '@tarojs/components'
  3. import './index.less'
  4. const Index: React.FC = () => {
  5. return (
  6. <View className='index'>
  7. <calendar />
  8. </View>
  9. )
  10. }
  11. export default Index