Files
Homarr/src/widgets/index.ts

18 lines
485 B
TypeScript
Raw Normal View History

import date from './date/DateTile';
2022-12-18 21:21:23 +01:00
import calendar from './calendar/CalendarTile';
import dashdot from './dashDot/DashDotTile';
import usenet from './useNet/UseNetTile';
import weather from './weather/WeatherTile';
2023-01-13 09:49:29 +00:00
import torrent from './torrent/TorrentTile';
import torrentNetworkTraffic from './torrentNetworkTraffic/TorrentNetworkTrafficTile';
2022-12-22 11:45:48 +09:00
export default {
calendar,
dashdot,
usenet,
weather,
2023-01-13 09:49:29 +00:00
'torrents-status': torrent,
dlspeed: torrentNetworkTraffic,
date,
};