import type { ReactNode } from 'react'; import { Button } from './Button'; import { HStack, VStack } from './Stacks'; export interface AlertProps { onHide: () => void; body: ReactNode; } export function Alert({ onHide, body }: AlertProps) { return (
{body}
); }