Button.jsx 402 B

1234567891011121314
  1. import React, { Component } from 'react';
  2. import { Button, WhiteSpace, WingBlank } from 'antd-mobile';
  3. // import { genPercentAdd } from 'antd/lib/upload/utils';
  4. export default function Buttons(){
  5. let buttonStyle={
  6. background:"green"
  7. }
  8. return (
  9. <WingBlank>
  10. <Button type="primary" style={buttonStyle}>+记一笔</Button><WhiteSpace />
  11. </WingBlank>
  12. )
  13. }