Created a project structure and build system with basic layout design.
This commit is contained in:
34
assets/js/components/MainList.react.js
Normal file
34
assets/js/components/MainList.react.js
Normal 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;
|
||||
Reference in New Issue
Block a user