Files
ReactWeather/app/components/Nav.jsx
2017-01-16 01:05:17 -08:00

54 lines
1.9 KiB
JavaScript

var React = require('react');
var {Link, IndexLink} = require('react-router');
var Nav = React.createClass({
onSearch: function (e) {
e.preventDefault();
alert('Not yet wired up!');
},
render: function (){
return (
<div className="top-bar">
<div className="top-bar-left">
<ul className="menu">
<li className="menu-text">React Weather App</li>
<li>
<IndexLink to="/" activeClassName="active" activeStyle={{fontWeight: 'bold'}}>Get Weather</IndexLink>
</li>
<li>
<Link to="/about" activeClassName="active" activeStyle={{fontWeight: 'bold'}}>About</Link>
</li>
<li>
<Link to="/examples" activeClassName="active" activeStyle={{fontWeight: 'bold'}}>Examples</Link>
</li>
</ul>
</div>
<div className="top-bar-right">
<form onSubmit={this.onSearch}>
<ul className="menu">
<li>
<input type="search" placeholder="Search weather"/>
</li>
<li>
<input type="submit" className="button" value="Get Weather"/>
</li>
</ul>
</form>
</div>
</div>
);
}
});
// var Nav = () => {
// return (
// <div>
// <h2>Nav Component</h2>
// <IndexLink to="/" activeClassName="active" activeStyle={{fontWeight: 'bold'}}> Get Weather</IndexLink>
// <Link to="/about" activeClassName="active" activeStyle={{fontWeight: 'bold'}}> About</Link>
// <Link to="/examples" activeClassName="active" activeStyle={{fontWeight: 'bold'}}> Examples</Link>
// </div>
// );
// };
module.exports = Nav;