UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 524 B
import React from 'react'; import { CategoryTopic, Community, Topic } from "../../../../../interfaces/types"; type Props = { currentCommunity: Community | null; selectedTopics: (CategoryTopic | Topic)[]; isLoading: boolean; clickOtherCommunity: () => void; onSubmitPost: (uncategorized?: boolean) => void; }; declare const SuggestedCommunity: ({ currentCommunity, selectedTopics, isLoading, clickOtherCommunity, onSubmitPost, }: Props) => React.JSX.Element; export default SuggestedCommunity;