summaryrefslogtreecommitdiff
path: root/client/applet.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-12-15 23:21:02 +0100
committerJules Laplace <julescarbon@gmail.com>2018-12-15 23:21:02 +0100
commitfe303999bb3d1067783ea96cef71ea2a4a69a2df (patch)
treec76af2b4ed724984953ac4b91f9452ba63d13370 /client/applet.js
parenta53a598461a25e8bf1d0bd3e63c47642e3213aef (diff)
embedding applets
Diffstat (limited to 'client/applet.js')
-rw-r--r--client/applet.js13
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>
+ )
+ }
+}