import { HStack, VStack } from "@yaakapp-internal/ui"; import type { ReactNode } from "react"; import { Button } from "./Button"; export interface AlertProps { onHide: () => void; body: ReactNode; } export function Alert({ onHide, body }: AlertProps) { return (
{body}
); }