UNPKG
react-jsf
Version:
latest (1.3.2)
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
JSF Compliant React Components
github.com/denny99/react-jsf
denny99/react-jsf
react-jsf
/
src
/
jsf
/
components
/
FFacet.js
13 lines
(10 loc)
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
'react'
;
import
PropTypes
from
'prop-types'
;
export
default
class
FFacet
extends
React.Component
{
static
propTypes = {
name
:
PropTypes
.
string
.
isRequired
, };
render
(
) {
return
this
.
props
.
children
; } }