mirror of
https://github.com/Pomax/BezierInfo-2.git
synced 2025-08-13 04:04:28 +02:00
section 15, 16
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
var React = require("react");
|
||||
|
||||
var Preface = React.createClass({
|
||||
statics: {
|
||||
title: "Preface"
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
title: "Preface"
|
||||
};
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<section>
|
||||
<h2>{Preface.title}</h2>
|
||||
<h2>{this.props.title}</h2>
|
||||
|
||||
<p>In order to draw things in 2D, we usually rely on lines, which typically get classified
|
||||
into two categories: straight lines, and curves. The first of these are as easy to draw as they
|
||||
|
Reference in New Issue
Block a user