Initial commit
[waldo-signature-composer.git] / src / components / Forms / Button / Button.js
blobf628184a9bd77e6e065fc395d014176ad2c10ac0
1 import React from 'react';
2 import './Button.css';
4 const Button = function({ text }) {
5 return (
6 <button className='Button'>{text}</button>
7 );
10 export default Button;