| 1234567891011121314 |
- import React, { Component } from 'react';
- import { Button, WhiteSpace, WingBlank } from 'antd-mobile';
- // import { genPercentAdd } from 'antd/lib/upload/utils';
- export default function Buttons(){
- let buttonStyle={
- background:"green"
- }
- return (
- <WingBlank>
- <Button type="primary" style={buttonStyle}>+记一笔</Button><WhiteSpace />
- </WingBlank>
- )
- }
|