Explain for different ways for get dependencies.

old
Javi Jiménez 2015-06-26 09:07:36 +07:00
parent 70418aac37
commit f35d48c93a
1 changed files with 4 additions and 0 deletions

View File

@ -1,7 +1,11 @@
"use strict"
# React-Toolbox full dependency way:
# Toolbox = require 'react-toolbox'
# Button = Toolbox.Button
# Form = Toolbox.Form
# Standalone dependencies way:
Button = require 'react-toolbox/components/button'
Form = require 'react-toolbox/components/form'