UNPKG

@ieltsrealtest/ui

Version:

Reusable UI components for IELTS Real Test platform, built with React and TypeScript.

10 lines (9 loc) 234 B
import React from 'react'; interface AuthDialogProps { isOpen: boolean; onClose: () => void; onSignIn: () => void; description: string; } declare const AuthDialog: React.FC<AuthDialogProps>; export default AuthDialog;