inital boilerplate checkin

This commit is contained in:
2016-04-13 17:07:23 -07:00
commit 252f72a948
8 changed files with 55 additions and 0 deletions

12
src/index.js Normal file
View File

@@ -0,0 +1,12 @@
class User {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
getName() {
return `${this.firstName} ${this.lastName}`
}
}
export default User;