@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
19 lines (18 loc) • 484 B
TypeScript
import { SCStepType } from '@selfcommunity/types';
export interface ContentProps {
/**
* The content 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
*/
handleContentCreation?: () => void;
}
export default function Content(inProps: ContentProps): JSX.Element;