summaryrefslogtreecommitdiff
path: root/client/applet.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/applet.js')
-rw-r--r--client/applet.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/applet.js b/client/applet.js
index 4d2a8e6c..80d40657 100644
--- a/client/applet.js
+++ b/client/applet.js
@@ -1,13 +1,16 @@
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)
+ // 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>
}