Skip to content

Commit

Permalink
feat: Add an ExerciseList for reals
Browse files Browse the repository at this point in the history
  • Loading branch information
dandenney committed Jul 21, 2017
1 parent 12ca272 commit 7341165
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/Exercises/ExerciseList/index.js
@@ -0,0 +1,16 @@
import { h, Component } from 'preact';

export default class extends Component {
constructor() {
super();
}

render() {
return (
<ul>
<li>Exercise</li>
<li>Exercise</li>
</ul>
);
}
}
2 changes: 2 additions & 0 deletions src/components/Exercises/index.js
@@ -1,12 +1,14 @@
import { h, Component } from 'preact';
import { auth, database } from '../firebase';
import ExerciseList from './ExerciseList';
import SignIn from '../SignIn';

export default class Exercises extends Component {
render() {
return (
<section>
<SignIn />
<ExerciseList />
</section>
);
}
Expand Down

0 comments on commit 7341165

Please sign in to comment.