mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-09-29 09:38:59 +02:00
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
var React = require("react");
|
|
|
|
var SectionHeader = React.createClass({
|
|
render: function() {
|
|
return <h2 data-num={this.props.number}><a href={'#' + this.props.name}>{this.props.title}</a></h2>;
|
|
}
|
|
});
|
|
|
|
module.exports = SectionHeader;
|