import { LoaderCircleIcon } from "lucide-react" export default function ({ msg }: { msg?: string }) { return (
{msg ? (

{msg}

) : ( )}
) }