From 2a58bf2976bed1aa710f9071803d61c77c9a44d5 Mon Sep 17 00:00:00 2001 From: petehunt Date: Thu, 30 May 2013 14:22:05 -0700 Subject: [PATCH] fixes --- _includes/nav_docs.html | 2 +- docs/api.md | 3 +-- docs/mixins.md | 3 ++- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_includes/nav_docs.html b/_includes/nav_docs.html index b1ae770c..d6d9e945 100644 --- a/_includes/nav_docs.html +++ b/_includes/nav_docs.html @@ -17,8 +17,8 @@
  • Component Lifecycle
  • Event Handling
  • Advanced Components
  • -
  • API
  • Mixins
  • +
  • API
  • diff --git a/docs/api.md b/docs/api.md index 5610be2f..fd29070e 100644 --- a/docs/api.md +++ b/docs/api.md @@ -2,8 +2,7 @@ id: docs-api title: React API layout: docs -prev: advanced-components.html -next: mixins.html +prev: mixins.html --- ## React diff --git a/docs/mixins.md b/docs/mixins.md index 7ed72925..1f78ebe4 100644 --- a/docs/mixins.md +++ b/docs/mixins.md @@ -2,7 +2,8 @@ id: docs-mixins title: Mixins layout: docs -prev: api.html +prev: advanced-components.html +next: api.html --- Mixins allow code to be shared between multiple React components. They're pretty similar to mixins in Python or traits in PHP. Let's look at a simple example: