1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-09-29 09:38:59 +02:00
Files
BezierInfo-2/components/SectionHeader.jsx
2016-01-09 23:31:52 -08:00

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;