MapComplete/src/UI/BigComponents/UnofficialThemeList.svelte

17 lines
550 B
Svelte
Raw Normal View History

2023-02-03 22:28:11 +01:00
<script lang="ts">
import { OsmConnection } from "../../Logic/Osm/OsmConnection"
import { Store, Stores, UIEventSource } from "../../Logic/UIEventSource"
import { Utils } from "../../Utils"
import ThemesList from "./ThemesList.svelte"
import Translations from "../i18n/Translations"
import UserRelatedState from "../../Logic/State/UserRelatedState"
import Tr from "../Base/Tr.svelte"
2023-02-03 22:28:11 +01:00
export let search: UIEventSource<string>
export let state: UserRelatedState & {
osmConnection: OsmConnection
}
2023-02-03 22:28:11 +01:00
let customThemes
2023-02-03 22:28:11 +01:00
</script>