UNPKG
@thejones/react-common-components
Version:
latest (2.0.1)
2.0.1
2.0.0
React component - semantic ui
example.com
@thejones/react-common-components
/
es
/
EnhancedButton.js
9 lines
(7 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
, {
Component
}
from
'react'
;
import
'semantic-ui-css/semantic.min.css'
;
import
{
Button
}
from
'semantic-ui-react'
;
function
EnhancedButton
(
props
) {
return
React
.
createElement
(
Button
, props); }
export
default
EnhancedButton
;