@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
19 lines (18 loc) • 491 B
TypeScript
import { SCStepType } from '@selfcommunity/types';
export interface CategoryProps {
/**
* The category step
*/
step: SCStepType;
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Callback triggered on success category content generation
* @default null
*/
handleCategoriesCreation?: () => void;
}
export default function Category(inProps: CategoryProps): JSX.Element;