UNPKG

qobuz-ui

Version:

Interface react pour application web et desktop

16 lines (13 loc) 280 B
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> ); } }