UNPKG

@selfcommunity/react-ui

Version:

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

10 lines (9 loc) 347 B
/// <reference types="react" /> import { SCCourseType } from '@selfcommunity/types'; interface OptionsProps { course: SCCourseType; setCourse: (course: SCCourseType) => void; } declare function Options(props: OptionsProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Options>; export default _default;