1
0
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:
Pomax
2016-01-02 11:27:23 -08:00
parent 28373e5321
commit 982d432da8
24 changed files with 1583 additions and 163 deletions

View File

@@ -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