diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-03-08 17:19:36 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-03-08 17:19:36 +0100 |
| commit | 1dcb61dab45b4891b1b737877d3d95e1211f33b3 (patch) | |
| tree | a13ee4541e0a55dcbdfe5701b79ddd8da6ed8ca9 /client/applet.js | |
| parent | 6ddf79260f153aa52d2b444772c03cae502f4d35 (diff) | |
sortable dataset list
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 25291401..27191693 100644 --- a/client/applet.js +++ b/client/applet.js @@ -3,6 +3,7 @@ import React, { Component } from 'react' import { Container as FaceSearchContainer } from './faceSearch' import { Container as FaceAnalysisContainer } from './faceAnalysis' import { Container as NameSearchContainer } from './nameSearch' +import { Container as DatasetListContainer } from './datasetList' export default class Applet extends Component { render() { @@ -14,6 +15,8 @@ export default class Applet extends Component { return <FaceSearchContainer {...this.props} /> case 'name_search': return <NameSearchContainer {...this.props} /> + case 'dataset_list': + return <DatasetListContainer {...this.props} /> default: return <pre style={{ color: '#0f0' }}>{'Megapixels'}</pre> } |
