FEAT: Searchbar || FIX: spacings, overflows

This commit is contained in:
aidenpwnz 2022-09-01 19:11:45 +02:00
parent f40ca1e25c
commit 4581c4eeb0
5 changed files with 99 additions and 7 deletions

View file

@ -1,12 +1,14 @@
import WeatherApi from "components/widgets/weather/weather";
import OpenWeatherMap from "components/widgets/openweathermap/weather";
import Resources from "components/widgets/resources/resources";
import Search from "components/widgets/search/search";
const widgetMappings = {
weather: WeatherApi, // This key will be deprecated in the future
weatherapi: WeatherApi,
openweathermap: OpenWeatherMap,
resources: Resources,
search: Search,
};
export default function Widget({ widget }) {