button.js 152 B

1234567
  1. import React from 'react';
  2. export default ({ text,type = 'button', ...rest }) => (
  3. <button type={type} {...rest}>
  4. { text }
  5. </button>
  6. );