Removed widgets from tile definitions

This commit is contained in:
Meierschlumpf
2022-12-18 21:50:08 +01:00
parent 864371e3c2
commit b4cfa1ac05
12 changed files with 126 additions and 15 deletions

View File

@@ -1,4 +1,8 @@
import calendar from './calendar/CalendarTile';
export default { calendar };
// TODO: add exports of new IWidgetDefinitions to here
import dashDot from './dashDot/DashDotTile';
import useNet from './useNet/UseNetTile';
import clock from './clock/ClockTile';
import weather from './weather/WeatherTile';
import bitTorrent from './bitTorrent/BitTorrentTile';
import torrentNetworkTraffic from './torrentNetworkTraffic/TorrentNetworkTrafficTile';
export default { calendar, dashDot, useNet, clock, weather, bitTorrent, torrentNetworkTraffic };