UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

11 lines 401 B
import React from 'react'; import { withNativeProps } from 'antd-mobile/es/utils/native-props'; import { View } from '@tarojs/components'; const classPrefix = 'adm-auto-center'; export const AutoCenter = props => { return withNativeProps(props, React.createElement(View, { className: classPrefix }, React.createElement(View, { className: `${classPrefix}-content` }, props.children))); };