UNPKG

xcandy

Version:
14 lines 396 B
import { Component } from "@tarojs/taro-h5"; import Nerv from "nervjs"; import { View } from '@tarojs/components'; import './index.scss'; class XcCard extends Component { render() { const { title } = this.props; return <View className="xc-card"> {title && <View className="xc-card__title">{title}</View>} {this.props.children} </View>; } } export default XcCard;