chore: initial commit with basic module federation setup in vite config

This commit is contained in:
Ilia Mashkov
2026-03-12 21:07:00 +03:00
commit 8916fd759e
22 changed files with 4092 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
export * from "./lib";
export * from "./ui";

View File

@@ -0,0 +1,7 @@
export interface Props {
children: React.ReactNode;
}
export function AuthGuard({ children }: Props) {
return <>{children}</>;
}

View File

@@ -0,0 +1 @@
export function useAuth() {}

View File

@@ -0,0 +1,2 @@
export { useAuth } from "./hooks/useAuth/useAuth";
export { AuthGuard } from "./hocs/AuthGuard/AuthGuard";

View File

@@ -0,0 +1,5 @@
export function LoginForm() {
return (
<form>Login Form</form>
);
}

View File

@@ -0,0 +1,5 @@
export function RegisterForm() {
return (
<form>Register Form</form>
);
}

View File

@@ -0,0 +1,2 @@
export { LoginForm } from "./LoginForm/LoginForm";
export { RegisterForm } from "./RegisterForm/RegisterForm";