forked from TeamMartinez/YOLO-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.