@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 524 B
TypeScript
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;