Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mitwirken.me/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

To get the most out of this guide, you’ll need to:

1. Install

Install the Mitwirken React SDK.
bun add mitwirken @mitwirken/react

2. Display membership registration form

Easily display the membership registration form by using the MitwirkenForm component.
import { MitwirkenForm } from '@mitwirken/react';

export default function App() {
    const mitwirken = new Mitwirken();
    const membershipForm = mitwirken.memberships.initiate()
    return <MitwirkenForm membershipForm />;
}

3. Try it yourself

Example Project

A simple example project that uses the Mitwirken API to initiate a membership.