mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-09-30 01:59:00 +02:00
22 lines
402 B
JavaScript
22 lines
402 B
JavaScript
var React = require("react");
|
|
|
|
var Locale = require("../../../lib/locale");
|
|
var locale = new Locale();
|
|
var page = "matrixsplit";
|
|
|
|
var MatrixSplit = React.createClass({
|
|
getDefaultProps: function() {
|
|
return {
|
|
title: locale.getTitle(page)
|
|
};
|
|
},
|
|
|
|
render: function() {
|
|
return (
|
|
<section>{ locale.getContent(page, this) }</section>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = MatrixSplit;
|