UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

11 lines 493 B
import React from 'react'; import { SynapseClientError } from '@/utils'; export interface ChallengeRegisterButtonProps { projectId: string; onError?: (error: SynapseClientError) => void; onJoinClick?: () => void; onLeaveClick?: () => void; } declare const ChallengeRegisterButton: ({ projectId, onError, onJoinClick, onLeaveClick, }: ChallengeRegisterButtonProps) => React.ReactNode; export default ChallengeRegisterButton; //# sourceMappingURL=ChallengeRegisterButton.d.ts.map