import React from 'react';
import { Button } from 'test-components';

export default function () {
  return (
    <div>
      <Button theme="primary">主按钮</Button>
      <Button theme="default">次按钮</Button>
      <Button theme="text">文字按钮</Button>
    </div>
  );
}
