1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-11 17:42:48 +00:00

added wrapper and navbar

This commit is contained in:
2017-02-02 23:56:05 +00:00
committed by Mitchell Gerber
parent 73bd161685
commit 5f14578f86
16 changed files with 128 additions and 120 deletions

12
app/pages/Home/Home.js Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
export default class Home extends React.Component {
render() {
return (
<div className="Home">
Test home page
</div>
);
}
}