diff options
Diffstat (limited to 'client/components')
| -rw-r--r-- | client/components/App.jsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/components/App.jsx b/client/components/App.jsx index e69de29..26af681 100644 --- a/client/components/App.jsx +++ b/client/components/App.jsx @@ -0,0 +1,12 @@ +import React from 'react' + +export default class App extends React.Component { + constructor() { + super() + } + render() { + return ( + <div>Loading...</div> + ) + } +}
\ No newline at end of file |
