UNPKG
qobuz-ui
Version:
latest (1.0.0)
1.0.0
Interface react pour application web et desktop
qobuz-ui
/
app
/
containers
/
App.js
16 lines
(13 loc)
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
React
, {
Component
,
PropTypes
}
from
'react'
;
export
default
class
App
extends
Component
{
static
propTypes = {
children
:
PropTypes
.
element
.
isRequired
};
render
(
) {
return
(
<
div
>
{this.props.children}
</
div
>
); } }