import React from "react" import { Alert as ChakraAlert, AlertIcon } from "@chakra-ui/core" interface AlertProps { children: string | string[] status: "error" | "success" | "warning" | "info" } const Alert: React.FC = ({ children, status }) => { return ( {children} ) } export default Alert