@tarojsx/ui
Version:
We reinvents the UI for Taro3+
9 lines • 391 B
JavaScript
import React from 'react';
import classNames from 'classnames';
import { View } from '@tarojs/components';
import '../style/List.scss';
export const List = props => {
const { className, hasBorder, children } = props;
return React.createElement(View, { className: classNames('at-list', { 'at-list--no-border': !hasBorder }, className) }, children);
};
//# sourceMappingURL=List.js.map