Files
optolith-client/js/components/pane/PaneUser.js
T
2016-10-04 21:03:00 +02:00

23 lines
316 B
JavaScript

import React, { Component, PropTypes } from 'react';
class PaneUser extends Component {
static propTypes = {
name: PropTypes.string
};
constructor(props) {
super(props);
}
render() {
return (
<div className="pane-user">
<h2>{this.props.name}</h2>
</div>
);
}
}
export default PaneUser;