forked from ivacf/ivanc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContent.js
More file actions
executable file
·29 lines (25 loc) · 752 Bytes
/
Copy pathContent.js
File metadata and controls
executable file
·29 lines (25 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var React = require('react');
var AppList = require('./AppList.js');
var RepoList = require('./RepoList.js');
var ArticleList = require('./ArticleList.js');
var Content = React.createClass({
render: function() {
return (
<div className="content">
<div className="sectionContainer">
<h1 className="contentTitle">Some projects I've worked on</h1>
<AppList />
</div>
<div className="sectionContainer">
<h1 className="contentTitle">My articles</h1>
<ArticleList />
</div>
<div className="sectionContainer">
<h1 className="contentTitle">Open source work</h1>
<RepoList />
</div>
</div>
);
}
});
module.exports = Content;