Marina Yakovenko 5 years ago
parent
commit
c2f9e9ff15
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/button/button.js

+ 1 - 1
src/components/button/button.js

@@ -1,4 +1,4 @@
 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>;