diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-03-08 20:51:11 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-03-08 20:51:11 +0100 |
| commit | 1b086936a927aed44e505b12239c78fefa1e058c (patch) | |
| tree | 2438609c973c4a3e791509bb30d9ac6827950b0b /client/applet.js | |
| parent | e6c50e5550275b8e9d2245201c77c6f9fef7a11a (diff) | |
chart!
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> } |
