@discoveryjs/discovery
Version:
Frontend framework for rapid data (JSON) analysis, shareable serverless reports and dashboards
12 lines (11 loc) • 369 B
JavaScript
const defaultDemoData = [
{ name: 'Alice', age: 34, occupation: 'Engineer' },
{ name: 'Bob', age: 42, occupation: 'Doctor' },
{ name: 'Charlie', age: 9, occupation: 'Student' },
{ name: 'David', age: 50, occupation: 'Doctor' },
{ name: 'Eve', age: 15, occupation: 'Engineer' }
];
export default {
demoData: defaultDemoData,
demo: 'table'
};