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