diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-03-17 22:15:38 +0100 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-03-17 22:15:38 +0100 |
| commit | 09ffebf333adfe45967b44eb8f6237a65a876e25 (patch) | |
| tree | b83d6cc1461fe2f74f2ca9b637ab36abeada51f6 /client/components/App.jsx | |
| parent | 4e9e8b7692f906e5e389ebfbf5cb1873bed38a00 (diff) | |
getting set up with babel and webpack
Diffstat (limited to 'client/components/App.jsx')
| -rw-r--r-- | client/components/App.jsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/components/App.jsx b/client/components/App.jsx new file mode 100644 index 0000000..f7cfa97 --- /dev/null +++ b/client/components/App.jsx @@ -0,0 +1,10 @@ +import React from 'react'; + +export default class App extends React.Component { + render() { + return ( + <div style={{textAlign: 'center'}}> + <h1>Hello World</h1> + </div>); + } +} |
