Initial commit from boilerplate

This commit is contained in:
2016-12-21 17:59:10 -07:00
commit 85f374aed3
20 changed files with 1023 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
'use strict';
import React from 'react';
export default class Home extends React.Component {
render(){
return (
<div>
Hello world!
</div>
);
}
}