import React, { FC } from "react"; type Props = { children: any } export const Alert: FC = ({ children }) => (
Oops! {children}
);