diff options
| author | adamhrv <adam@ahprojects.com> | 2019-03-08 21:56:41 +0100 |
|---|---|---|
| committer | adamhrv <adam@ahprojects.com> | 2019-03-08 21:56:41 +0100 |
| commit | 69c4157f599846173362d2a450f58b5f58c0d8d8 (patch) | |
| tree | 342e4e295820f6daaa130032fdb10bdf4ee1f2b7 /client/applet.js | |
| parent | 5bcbb24791062b6524c06e2bf2bd4a61965ba6e8 (diff) | |
| parent | 377279bd1fb43d8752f7a664fe0f5c2ae20c0bc3 (diff) | |
Merge branch 'master' of github.com:adamhrv/megapixels_dev
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 27191693..cd73925c 100644 --- a/client/applet.js +++ b/client/applet.js @@ -4,6 +4,7 @@ import { Container as FaceSearchContainer } from './faceSearch' import { Container as FaceAnalysisContainer } from './faceAnalysis' import { Container as NameSearchContainer } from './nameSearch' import { Container as DatasetListContainer } from './datasetList' +import { Container as ChartContainer } from './chart' export default class Applet extends Component { render() { @@ -17,6 +18,8 @@ export default class Applet extends Component { return <NameSearchContainer {...this.props} /> case 'dataset_list': return <DatasetListContainer {...this.props} /> + case 'chart': + return <ChartContainer {...this.props} /> default: return <pre style={{ color: '#0f0' }}>{'Megapixels'}</pre> } |
