2022-12-18 22:58:00 +01:00
|
|
|
import date from './date/DateTile';
|
2022-12-18 21:21:23 +01:00
|
|
|
import calendar from './calendar/CalendarTile';
|
2022-12-18 22:58:00 +01:00
|
|
|
import dashdot from './dashDot/DashDotTile';
|
|
|
|
|
import usenet from './useNet/UseNetTile';
|
2022-12-18 21:50:08 +01:00
|
|
|
import weather from './weather/WeatherTile';
|
2023-01-13 09:49:29 +00:00
|
|
|
import torrent from './torrent/TorrentTile';
|
2023-01-22 21:35:13 +01:00
|
|
|
import torrentNetworkTraffic from './download-speed/TorrentNetworkTrafficTile';
|
2023-02-08 23:23:53 +02:00
|
|
|
import videoStream from './video/VideoStreamTile';
|
2022-12-22 11:45:48 +09:00
|
|
|
|
2022-12-18 22:58:00 +01:00
|
|
|
export default {
|
|
|
|
|
calendar,
|
|
|
|
|
dashdot,
|
|
|
|
|
usenet,
|
|
|
|
|
weather,
|
2023-01-13 09:49:29 +00:00
|
|
|
'torrents-status': torrent,
|
2022-12-18 22:58:00 +01:00
|
|
|
dlspeed: torrentNetworkTraffic,
|
|
|
|
|
date,
|
2023-02-08 23:23:53 +02:00
|
|
|
'video-stream': videoStream,
|
2022-12-18 22:58:00 +01:00
|
|
|
};
|