ekyc

Electronic KYC process with uploading ID document using OAuth 2.1 (experimental)
Log | Files | Refs | README | LICENSE

_layout.tsx (244B)


      1 import { PageProps } from "$fresh/src/server/types.ts";
      2 
      3 export default function AuthnLayout({ Component }: PageProps) {
      4   return (
      5     <div style="max-width: 24em; margin-left: auto; margin-right: auto;">
      6       <Component />
      7     </div>
      8   );
      9 }