-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add built-in data table notebook examples to new ext. config.ts (#75)
- Loading branch information
1 parent
ad5c6fc
commit be3c544
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// built-in data table notebook examples | ||
export const notebookExamples: Array<any> = [ | ||
{ | ||
name: 'Chicago Traffic Tracker', | ||
file: './notebooks/chicago-traffic-tracker.restbook', | ||
description: 'Current Chicago Traffic Tracker REST Book', | ||
}, | ||
{ | ||
name: 'USA Airports', | ||
file: './notebooks/usa-airports.ipynb', | ||
description: 'USA Airports TypeScript Notebook', | ||
}, | ||
{ | ||
name: 'Chicago Speed Cameras', | ||
file: './notebooks/chicago-speed-cameras.ipynb', | ||
description: 'Chicago Speed Cameras .NET Interactive Notebook', | ||
}, | ||
{ | ||
name: 'Chicago Red Light Cameras', | ||
file: './notebooks/chicago-red-light-cameras.ipynb', | ||
description: 'Chicago Red Light Cameras Pyolite Notebook', | ||
}, | ||
{ | ||
name: 'World Cities', | ||
file: './notebooks/world-cities.restbook', | ||
description: 'Major World Cities REST Book', | ||
}, | ||
{ | ||
name: 'World Rivers', | ||
file: './notebooks/world-rivers.restbook', | ||
description: 'Major World Rivers REST Book', | ||
}, | ||
{ | ||
name: 'World Lakes', | ||
file: './notebooks/world-lakes.restbook', | ||
description: 'Major World Lakes REST Book', | ||
}, | ||
{ | ||
name: 'World GDP', | ||
file: './notebooks/world-gdp.restbook', | ||
description: 'World GDP REST Book', | ||
}, | ||
]; |