saven
Version:
15 lines (14 loc) • 384 B
JavaScript
import Nerv from 'nervjs'
import classNames from 'classnames'
import View from '../view'
export default class TabbarContainer extends Nerv.Component {
render () {
const { children, className, ...reset } = this.props
const cls = classNames('taro-tabbar__container', className)
return (
<View className={cls} {...reset}>
{children}
</View>
)
}
}