Props Reference

Complete API reference for all Feed component props and TypeScript interfaces

Core Props

feedId (Required)

Type: string

The unique feed identifier from your RIXL dashboard. Create a feed at dash.rixl.com to get this ID.

<Feed feedId="your-feed-id" />

Each feed can contain multiple posts with videos and images. Manage your feed content through the RIXL dashboard.

Layout Recommendations

The Feed component works best when given explicit height constraints:

// Full viewport height
<div className="h-screen">
  <Feed feedId="your-feed-id" />
</div>

// Fixed height container
<div className="h-[600px]">
  <Feed feedId="your-feed-id" />
</div>

The Feed component requires a parent container with a defined height. Without height constraints, the infinite scroll behavior may not work correctly.

TypeScript Interface

interface FeedProps extends HTMLProps<HTMLDivElement> {
  feedId: string;
}