mirror of
https://github.com/ascribe/onion.git
synced 2025-02-12 08:30:53 +01:00
19 lines
375 B
JavaScript
19 lines
375 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
let FormPropertyHeader = React.createClass({
|
|
propTypes: {
|
|
children: React.PropTypes.arrayOf(React.PropTypes.element)
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<div className="ascribe-form-header">
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default FormPropertyHeader; |