@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
11 lines (10 loc) • 458 B
TypeScript
import { SCEventLocationType, SCEventType } from '@selfcommunity/types';
import { Geolocation } from './types';
export interface EventAddressProps {
locations?: SCEventLocationType[];
event?: SCEventType | Partial<SCEventType>;
forwardGeolocationData: (data: Geolocation) => void;
forwardLivestreamSettingsData: (settings: any) => void;
className?: string;
}
export default function EventAddress(inProps: EventAddressProps): JSX.Element;