Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80668 views
1
/**
2
* @jsx React.DOM
3
*/
4
5
var React = require('React');
6
var Site = require('Site');
7
var Prism = require('Prism');
8
var Marked = require('Marked');
9
var unindent = require('unindent');
10
11
var index = React.createClass({
12
render: function() {
13
return (
14
<Site>
15
<div className="hero">
16
<div className="wrap">
17
<div className="text"><strong>Flux</strong></div>
18
<div className="minitext">
19
Application Architecture for Building User Interfaces
20
</div>
21
</div>
22
</div>
23
24
<section className="content wrap">
25
<section className="home-section home-getting-started">
26
<p>
27
Flux is the application architecture that Facebook uses for building client-side web applications. It complements React's composable view components by utilizing a unidirectional data flow. It's more of a pattern rather than a formal framework, and you can start using Flux immediately without a lot of new code.
28
</p>
29
</section>
30
31
<section className="home-section home-getting-started">
32
<iframe width="500" height="280" src="//www.youtube.com/embed/nYkdrAPrdcw?list=PLb0IAmt7-GS188xDYE-u1ShQmFFGbrk0v&amp;start=621" frameBorder="0" allowFullcreen></iframe>
33
</section>
34
35
<section className="home-bottom-section">
36
<div className="buttons-unit">
37
<a href="docs/overview.html#content" className="button">Learn more about Flux</a>
38
</div>
39
</section>
40
<p></p>
41
</section>
42
</Site>
43
);
44
}
45
});
46
47
module.exports = index;
48
49