|
@@ -1,4 +1,4 @@
|
|
import React from 'react'
|
|
import React from 'react'
|
|
|
|
|
|
-export default ({text, type = "button", disabled, ...rest}) =>
|
|
|
|
|
|
+export default ({text, type = "button", id, disabled, ...rest}) =>
|
|
<button type = {type} disabled = {disabled} {...rest}>{text}</button>;
|
|
<button type = {type} disabled = {disabled} {...rest}>{text}</button>;
|