Files
bigcapital/packages/webapp/src/containers/Authentication/AuthenticationPage.tsx

11 lines
302 B
TypeScript

import { EnsureAuthNotAuthenticated } from "@/components/Guards/EnsureAuthNotAuthenticated";
import { Authentication } from "./Authentication";
export default function AuthenticationPage() {
return (
<EnsureAuthNotAuthenticated>
<Authentication />
</EnsureAuthNotAuthenticated>
);
}