diff options
Diffstat (limited to 'client/applet.js')
| -rw-r--r-- | client/applet.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/applet.js b/client/applet.js index ebc0e3fc..5cfa6e3e 100644 --- a/client/applet.js +++ b/client/applet.js @@ -5,7 +5,7 @@ import React, { Component } from 'react' // import { Container as NameSearchContainer } from './nameSearch' import { Container as DatasetListContainer } from './datasetList' import { CitationsTable, FileTable } from './table' -import { CountriesByYear, PieCharts } from './chart' +import { CountriesByYear, PieCharts, SinglePieChart } from './chart' export default class Applet extends Component { render() { @@ -23,6 +23,8 @@ export default class Applet extends Component { return <CountriesByYear {...this.props} /> case 'piechart': return <PieCharts {...this.props} /> + case 'single_pie_chart': + return <SinglePieChart {...this.props} /> case 'citations': return <CitationsTable {...this.props} /> case 'load_file': |
