1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 10:22:53 +00:00

init react

This commit is contained in:
2016-08-10 18:22:49 +00:00
parent e53e8c0fdc
commit 1651e7c803
6 changed files with 161 additions and 0 deletions

9
client/js/pages/Index.js Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
export default class Index extends React.Component{
render(){
return(
<div>This is the index test component</div>
);
}
}