Barrel export file for the `related-content` component subpath, re-exporting all public API surface from the `related-content-section` module.
## Key Components
| Export | Type | Description |
|---|---|---|
| `RelatedContentSection` | Component | Main component for rendering a section of related content cards |
| `GROUP_PAGE_SIZE` | Constant | Pagination size constant for grouped content display |
| `RelatedContentSectionProps` | Type | Props interface for `RelatedContentSection` |
| `CardLinkProvider` | Type | Provider component type for card link rendering |
| `CardLinkProviderProps` | Type | Props interface for `CardLinkProvider` |
| `CardLinkAnchorProps` | Type | Props interface for anchor elements within card links |
| `AdminCampaignCardSlot` | Type | Slot type for admin campaign card customization |
## Usage Example
```typescript
import {
RelatedContentSection,
GROUP_PAGE_SIZE,
type RelatedContentSectionProps,
type CardLinkProvider,
} from '@flamingo-stack/openframe-frontend-core/components/related-content'
const linkProvider: CardLinkProvider = ({ href, children }) => (
{children}
)
const props: RelatedContentSectionProps = {
items: contentItems,
pageSize: GROUP_PAGE_SIZE,
cardLinkProvider: linkProvider,
}
```
## Source
[`index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/index.ts)