mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import { EnsureAuthNotAuthenticated } from "@/components/Guards/EnsureAuthNotAuthenticated";
|
|
import { Authentication } from "./Authentication";
|
|
|
|
export default function AuthenticationPage() {
|
|
return (
|
|
<EnsureAuthNotAuthenticated>
|
|
<Authentication />
|
|
</EnsureAuthNotAuthenticated>
|
|
);
|
|
}
|