import { FeedObjectProps, FeedSidebarProps, FeedProps, SCFeedWidgetType } from '@selfcommunity/react-ui'; export interface ExploreFeedProps { /** * Id of the feed object * @default 'feed' */ id?: string; /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Widgets to be rendered into the feed * @default [CategoriesFollowed, UserFollowed] */ widgets?: SCFeedWidgetType[] | null; /** * Props to spread to single feed object * @default empty object */ FeedObjectProps?: FeedObjectProps; /** * Props to spread to single feed object * @default {top: 0, bottomBoundary: `#${id}`} */ FeedSidebarProps?: FeedSidebarProps; /** * Props to spread to feed component * @default {} */ FeedProps?: Omit; } /** * > API documentation for the Community-JS Explore Feed Template. Learn about the available props and the CSS API. * * * This component renders the template for explore feed. * Take a look at our demo component [here](/docs/sdk/community-js/react-templates/Components/ExploreFeed) #### Import ```jsx import {ExploreFeed} from '@selfcommunity/react-templates'; ``` #### Component Name The name `SCExploreFeedTemplate` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCExploreFeedTemplate-root|Styles applied to the root element.| * * @param inProps */ export default function ExploreFeed(inProps: ExploreFeedProps): JSX.Element;