16 lines
341 B
JavaScript
16 lines
341 B
JavaScript
|
var HelpPage = React.createClass({
|
||
|
render: function() {
|
||
|
return (
|
||
|
<main>
|
||
|
<h1>Help</h1>
|
||
|
<p>Content will go here</p>
|
||
|
<h3>Subsection</h3>
|
||
|
<p>More content</p>
|
||
|
<p>Even more content</p>
|
||
|
<section>
|
||
|
<Link href="/" label="<< Return"/>
|
||
|
</section>
|
||
|
</main>
|
||
|
);
|
||
|
}
|
||
|
});
|