UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

19 lines (18 loc) 452 B
import { SCStepType } from '@selfcommunity/types'; export interface AppProps { /** * The content step */ step: SCStepType; /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Callback triggered on complete action click * @default null */ onCompleteAction: () => void; } export default function App(inProps: AppProps): JSX.Element;