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