Skip to content

Commit

Permalink
stub out user 👩
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Aug 10, 2016
1 parent 9c29933 commit 50bab6f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
20 changes: 20 additions & 0 deletions app/screens/User/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React, {Component} from 'react';

export default class User extends Component {
render() {
return (
<div className="container">
<div className="row">
<div className="col-sm-3">
Profile for Matt
</div>
<div className="col-sm-9">
<h3>Repositories</h3>
<div>Repo Filter</div>
<div>Repo List</div>
</div>
</div>
</div>
);
}
}
7 changes: 2 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ import React from 'react';
import ReactDOM from 'react-dom';
import 'bootstrap/dist/css/bootstrap.min.css';
import './assets/styles.css';

function App() {
return <div>Hello World!</div>
}
import User from './app/screens/User'

ReactDOM.render(
<App />,
<User />,
document.getElementById('container')
);

0 comments on commit 50bab6f

Please sign in to comment.