mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import { AuthForm } from "./AuthForm";
|
|
import { AuthScreen } from "./AuthScreen";
|
|
import { SocialLink } from "./SocialLink";
|
|
|
|
export const Auth = {
|
|
Screen: AuthScreen,
|
|
Form: AuthForm,
|
|
SocialLink: SocialLink
|
|
};
|