Last active
March 28, 2018 22:42
-
-
Save benjcal/bac02195ff1f5d6fab672f966793912c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { observer } from 'mobx-react' | |
import store from './store' | |
let student1 = { | |
id: 'student1', | |
name: 'Ben' | |
} | |
let student2 = { | |
id: 'student2', | |
name: 'Nikki' | |
} | |
let course1 = { | |
id: 'course1', | |
name: 'Math 101' | |
} | |
store.addStudent(student1) | |
store.addStudent(student2) | |
store.addCourse(course1) | |
store.enrollStudent(course1.id, student1.id) | |
const StudentsList = () => { | |
return ( | |
<div> | |
<h2>{course1.name}</h2> | |
<ul> | |
{store.enrolledStudents(course1.id).map( | |
n => <li key={n.id}>{n.name}</li> | |
)} | |
</ul> | |
<button | |
onClick={() => store.enrollStudent(course1.id, student2.id)} | |
>Enroll Student 2</button> | |
</div> | |
) | |
} | |
export default observer(StudentsList) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment