UNPKG

taro-material

Version:

Mini Program components that implement Google's Material Design.

13 lines (11 loc) 427 B
import Nerv from "nervjs"; import Taro from "@tarojs/taro-h5"; 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>; } }