Files
element-web/src/components/structures/ModularWidgets.js
2017-06-07 10:55:49 +01:00

18 lines
491 B
JavaScript

class ModularWidgets {
static widgetTypes = [
{
type: 'etherpad',
icon: 'http://localhost:8000/static/etherpad.svg',
name: 'Etherpad',
description: 'Collaborative text editor',
},
{
type: 'grafana',
icon: 'http://localhost:8000/static/grafana.svg',
name: 'Grafana',
description: 'Graph and monitor all the things!',
},
];
}
export default ModularWidgets;