Vollständiges Redesign mit Gold-Formularen, BMP-Logo, multi-step Forms (Bewerbung, Kontakt, Sponsoring), Netlify-Deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import * as React from 'react';
|
|
|
|
interface PresenceProps {
|
|
children: React.ReactElement | ((props: {
|
|
present: boolean;
|
|
}) => React.ReactElement);
|
|
present: boolean;
|
|
}
|
|
declare const Presence: React.FC<PresenceProps>;
|
|
declare const Root: React.FC<PresenceProps>;
|
|
|
|
export { Presence, type PresenceProps, Root };
|