Barrel export file that re-exports the `ShareExperienceSection` component and its associated `ShareExperienceSectionProps` type from the `share-experience-section` module. ## Key Components - **`ShareExperienceSection`** — The main component for rendering a "share experience" UI section. - **`ShareExperienceSectionProps`** — TypeScript type definition for the component's props. ## Usage Example ```typescript import { ShareExperienceSection, type ShareExperienceSectionProps, } from '@/components/share-experience-section' const props: ShareExperienceSectionProps = { // component-specific props } export default function Page() { return } ``` > **Source:** [`index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/index.ts)