summaryrefslogtreecommitdiff
path: root/client/applet.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/applet.js')
-rw-r--r--client/applet.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/client/applet.js b/client/applet.js
new file mode 100644
index 00000000..80d40657
--- /dev/null
+++ b/client/applet.js
@@ -0,0 +1,18 @@
+import React, { Component } from 'react'
+
+import { Container as FaceSearchContainer } from './faceSearch'
+import { Container as NameSearchContainer } from './nameSearch'
+
+export default class Applet extends Component {
+ render() {
+ // console.log(this.props)
+ switch (this.props.payload.cmd) {
+ case 'face_search':
+ return <FaceSearchContainer {...this.props} />
+ case 'name_search':
+ return <NameSearchContainer {...this.props} />
+ default:
+ return <pre style={{ color: '#0f0' }}>{'Megapixels'}</pre>
+ }
+ }
+}