Add RSS widget

This commit is contained in:
Manuel
2023-02-15 22:00:06 +01:00
committed by GitHub
parent 47ea22e411
commit ca50cffe82
10 changed files with 428 additions and 5 deletions

View File

@@ -1,11 +1,12 @@
import date from './date/DateTile';
import calendar from './calendar/CalendarTile';
import dashdot from './dashDot/DashDotTile';
import usenet from './useNet/UseNetTile';
import weather from './weather/WeatherTile';
import torrent from './torrent/TorrentTile';
import date from './date/DateTile';
import torrentNetworkTraffic from './download-speed/TorrentNetworkTrafficTile';
import rss from './rss/RssWidgetTile';
import torrent from './torrent/TorrentTile';
import usenet from './useNet/UseNetTile';
import videoStream from './video/VideoStreamTile';
import weather from './weather/WeatherTile';
export default {
calendar,
@@ -15,5 +16,6 @@ export default {
'torrents-status': torrent,
dlspeed: torrentNetworkTraffic,
date,
rss,
'video-stream': videoStream,
};