diff options
Diffstat (limited to 'client/applet.js')
| -rw-r--r-- | client/applet.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/applet.js b/client/applet.js new file mode 100644 index 00000000..f218a7f2 --- /dev/null +++ b/client/applet.js @@ -0,0 +1,13 @@ +import React, { Component } from 'react' + +// import { Header, Sidebar, Footer } from './common' + +export default class Applet extends Component { + render() { + return ( + <div className='applet'> + <pre style={{ color: '#0f0' }}>{'Megapixels'}</pre> + </div> + ) + } +} |
