taro-material
Version:
Mini Program components that implement Google's Material Design.
13 lines (10 loc) • 393 B
JavaScript
import Taro from '@tarojs/taro'
import classNames from 'classnames'
import { View } from '@tarojs/components'
import AtComponent from '../../../common/component'
export default class AtActionSheetBody extends AtComponent {
render () {
const rootClass = classNames('at-action-sheet__body', this.props.className)
return <View className={rootClass}>{this.props.children}</View>
}
}