repo.or.cz
/
sdvi-signature-composer.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Initial commit
[sdvi-signature-composer.git]
/
src
/
components
/
Forms
/
Button
/
Button.js
blob
f628184a9bd77e6e065fc395d014176ad2c10ac0
1
import React from 'react';
2
import './Button.css';
3
4
const Button = function({ text }) {
5
return (
6
<button className='Button'>{text}</button>
7
);
8
}
9
10
export default Button;