Skip to content

Instantly share code, notes, and snippets.

@koistya
Last active September 10, 2016 16:26
Show Gist options
  • Select an option

  • Save koistya/609e90c27fd59bcc6182 to your computer and use it in GitHub Desktop.

Select an option

Save koistya/609e90c27fd59bcc6182 to your computer and use it in GitHub Desktop.
React.js Component Sample
/**
* @jsx React.DOM
*/
'use strict';
var React = require('react');
var {Link} = require('react-router');
var Navbar = React.createClass({
render () {
return (
<div className="navbar-top">
<div className="container">
<Link className="navbar-brand row" to="home">
<img src="/images/logo-small.png" width="38" height="38" alt="React" />
{' Facebook React Starter Kit'}
</Link>
</div>
</div>
);
}
});
module.exports = Navbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment