diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-01-13 00:04:35 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-01-13 00:04:35 +0100 |
| commit | bb7efd0af0db8183b5b3f96ac0de1bfd9cd249ae (patch) | |
| tree | 75549888c89cdb0bb1ee8d217f77b95db6e966dc /client/applet.js | |
| parent | 4060915f156dec87a449a10c96d166d474f2d628 (diff) | |
face analysis frontend scaffolding
Diffstat (limited to 'client/applet.js')
| -rw-r--r-- | client/applet.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/applet.js b/client/applet.js index 80d40657..25291401 100644 --- a/client/applet.js +++ b/client/applet.js @@ -1,12 +1,15 @@ import React, { Component } from 'react' import { Container as FaceSearchContainer } from './faceSearch' +import { Container as FaceAnalysisContainer } from './faceAnalysis' import { Container as NameSearchContainer } from './nameSearch' export default class Applet extends Component { render() { // console.log(this.props) switch (this.props.payload.cmd) { + case 'face_analysis': + return <FaceAnalysisContainer {...this.props} /> case 'face_search': return <FaceSearchContainer {...this.props} /> case 'name_search': |
