import React, { PropsWithChildren } from 'react'; import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo'; export default function AuthenticationCard({ children, }: PropsWithChildren>) { return (
{children}
); }