UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

13 lines (12 loc) 302 B
import { ReactElement } from 'react'; import './login.scss'; interface setValuesParams { userId: string; nickName: string; darkTheme: boolean; } interface Props { setValues(params: setValuesParams): void; } export default function Login({ setValues, }: Props): ReactElement; export {};