Skip to content

Commit

Permalink
rename app to global
Browse files Browse the repository at this point in the history
  • Loading branch information
15Dkatz committed Feb 20, 2017
1 parent 8a7ef87 commit 4c28ea2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8,216 deletions.
11 changes: 11 additions & 0 deletions app/components/Global.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React, { Component } from 'react';

class Global extends Component {
render() {
return (
<div>The Global App Component</div>
)
}
}

export default Global;
3 changes: 2 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom';
import Global from './components/Global';

ReactDOM.render(
<div>React Application!</div>, document.getElementById('root')
<Global />, document.getElementById('root')
);
Loading

0 comments on commit 4c28ea2

Please sign in to comment.