Marina Yakovenko 5 年 前
コミット
c2f9e9ff15
1 ファイル変更1 行追加1 行削除
  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>;