mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
21 lines
454 B
TypeScript
21 lines
454 B
TypeScript
"use client";
|
|
// components
|
|
import { AuthView } from "@/components/views";
|
|
// helpers
|
|
import { EPageTypes } from "@/helpers/authentication.helper";
|
|
import { useInstance } from "@/hooks/store";
|
|
// wrapper
|
|
import { AuthWrapper } from "@/lib/wrappers";
|
|
|
|
export default function HomePage() {
|
|
const { data } = useInstance();
|
|
|
|
console.log("data", data);
|
|
|
|
return (
|
|
<AuthWrapper pageType={EPageTypes.INIT}>
|
|
<AuthView />
|
|
</AuthWrapper>
|
|
);
|
|
}
|