Created a project structure and build system with basic layout design.

This commit is contained in:
Mario Basic
2015-05-26 17:58:33 +02:00
parent 49447b0953
commit 5b966014c4
124 changed files with 52680 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
var React = require('react');
class MainList extends React.Component
{
componentDidMount()
{
}
render()
{
return(
<div className="list-group">
<a href="#" className="list-group-item">
Options
</a>
<a href="#" className="list-group-item">
Custom Rules
</a>
<a href="#" className="list-group-item">
Dashboard
</a>
<a href="#" className="list-group-item">
Login
</a>
<a href="#" className="list-group-item">
Logout
</a>
</div>
);
}
}
export default MainList;