File size: 156 Bytes
0ed5b20
 
b48537f
0ed5b20
b48537f
 
 
 
1
2
3
4
5
6
7
8
9
"use client"

import dynamic from "next/dynamic";

export const Login = dynamic(() => import("./login"), {
  // Make sure we turn SSR off
  ssr: false,
});