Migrated widget modals from integration modals

This commit is contained in:
Meierschlumpf
2022-12-18 22:58:00 +01:00
parent b4cfa1ac05
commit f98e66fcad
15 changed files with 79 additions and 132 deletions

View File

@@ -1,8 +1,16 @@
import date from './date/DateTile';
import calendar from './calendar/CalendarTile';
import dashDot from './dashDot/DashDotTile';
import useNet from './useNet/UseNetTile';
import clock from './clock/ClockTile';
import dashdot from './dashDot/DashDotTile';
import usenet from './useNet/UseNetTile';
import weather from './weather/WeatherTile';
import bitTorrent from './bitTorrent/BitTorrentTile';
import torrentNetworkTraffic from './torrentNetworkTraffic/TorrentNetworkTrafficTile';
export default { calendar, dashDot, useNet, clock, weather, bitTorrent, torrentNetworkTraffic };
export default {
calendar,
dashdot,
usenet,
weather,
'torrents-status': bitTorrent,
dlspeed: torrentNetworkTraffic,
date,
};