Skip to content

Commit

Permalink
opps
Browse files Browse the repository at this point in the history
  • Loading branch information
vuzDylan committed Feb 11, 2016
1 parent 82a0277 commit c8c65fc
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 0 deletions.
23 changes: 23 additions & 0 deletions app/js/containers/app.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
'use strict';

import React from 'react';
import { Link } from 'react-router';

class App extends React.Component {
render(){
return (
<div>
<div className="ui three item menu">
<Link className="item" to="/">Home</Link>
<Link className="item" to="/calendar">Calendar</Link>
<Link className="item" to="/portfolio">Portfolio</Link>
</div>
<div className="ui mian container">
{this.props.children}
</div>
</div>
)
}
}

export default App;
13 changes: 13 additions & 0 deletions app/js/containers/calendar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

import React from 'react';

class Calendar extends React.Component {
render(){
return (
<p>Calendar</p>
)
}
}

export default Calendar;
13 changes: 13 additions & 0 deletions app/js/containers/home.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

import React from 'react';

class Home extends React.Component {
render(){
return (
<p>Home</p>
)
}
}

export default Home;
13 changes: 13 additions & 0 deletions app/js/containers/portfolio.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

import React from 'react';

class Portfolio extends React.Component {
render(){
return (
<p>Portfolio</p>
)
}
}

export default Portfolio;
Empty file added app/js/reduers/index.js
Empty file.
Empty file added app/js/reduers/stock.js
Empty file.

0 comments on commit c8c65fc

Please sign in to comment.