TestData: Some simple small test data and first draft of what's new in v8 demo dashboard (#34731)

* TestData: More test data

* Added v8 demo dashboard
This commit is contained in:
Torkel Ödegaard
2021-05-26 14:11:57 +02:00
committed by GitHub
parent b168223029
commit 6fb0560a84
9 changed files with 3111 additions and 59 deletions

View File

@@ -8,7 +8,12 @@ export const CSVFileEditor = ({ onChange, query }: EditorProps) => {
onChange({ ...query, csvFileName: value });
};
const files = ['population_by_state.csv', 'city_stats.csv'].map((name) => ({ label: name, value: name }));
const files = [
'population_by_state.csv',
'gdp_per_capita.csv',
'js_libraries.csv',
'browser_marketshare.csv',
].map((name) => ({ label: name, value: name }));
return (
<InlineFieldRow>