rwwarren/door-lock

View on GitHub
web/src/inc/Home.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

var Home = React.createClass({
  render: function () {
    return (
      <div>
        Welcome to the home page {this.props.Username}!
      </div>
    );
  }
});

module.exports = Home;