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 Center = require('center');
8
var H2 = require('H2');
9
10
var support = React.createClass({
11
render: function() {
12
return (
13
<Site section="support">
14
15
<section className="content wrap documentationContent nosidebar">
16
<div className="inner-content">
17
<h1>Need help?</h1>
18
<div className="subHeader"></div>
19
<p>
20
<strong>Flux</strong> is worked on full-time by Facebook&#39;s
21
product infrastructure user interface
22
engineering teams. They&#39;re often around and available for
23
questions.
24
</p>
25
26
<H2>Stack Overflow</H2>
27
<p>Many members of the community use Stack Overflow to ask questions. Read through the <a href="http://stackoverflow.com/questions/tagged/reactjs">existing questions</a> tagged with <strong>reactjs</strong> or <a href="http://stackoverflow.com/questions/ask">ask your own</a>!</p>
28
<H2>Google Groups mailing list</H2>
29
<p><a href="http://groups.google.com/group/reactjs" target="_blank">The <strong>reactjs</strong> Google Group</a> is also a good place to ask questions and find answers.</p>
30
<H2>IRC</H2>
31
<p>Many developers and users idle on Freenode.net&#39;s IRC network in <strong><a href="irc://chat.freenode.net/reactjs">#reactjs on freenode</a></strong>.</p>
32
<H2>Twitter</H2>
33
<p><a href="https://twitter.com/search?q=%23fluxjs"><strong>#fluxjs</strong> hash tag on Twitter</a> is used to keep up with the latest Flux news.</p>
34
35
<p><Center><a className="twitter-timeline" data-dnt="true" data-chrome="nofooter noheader transparent" href="https://twitter.com/search?q=%23fluxjs" data-widget-id="493727680810848257"></a></Center></p>
36
</div>
37
</section>
38
39
</Site>
40
);
41
}
42
});
43
44
module.exports = support;
45
46