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