34 lines
717 B
JavaScript
34 lines
717 B
JavaScript
|
|
||
|
import Taro, { Component } from '@tarojs/taro'
|
||
|
import { View, Button, Text } from '@tarojs/components'
|
||
|
|
||
|
|
||
|
import './copyrightComponent.scss'
|
||
|
|
||
|
|
||
|
|
||
|
class CopyrightComponent extends Component {
|
||
|
|
||
|
config = {
|
||
|
navigationBarTitleText: 'copyrightComponent'
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<View className='copyrightComponent'>
|
||
|
<View className='copyright-box'>
|
||
|
<View className='title'>
|
||
|
Copyright © 晨丰全屋定制商城 闽ICP备16007300号-2
|
||
|
</View>
|
||
|
|
||
|
</View>
|
||
|
<View className='gap'>
|
||
|
|
||
|
</View>
|
||
|
</View>
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default CopyrightComponent
|