import React from "react";
import { Alert } from "@tencent/tea-component";

export default function AlertExample() {
  return (
    <>
      <Alert>提示消息</Alert>
      <Alert type="success" style={{ marginTop: 8 }}>
        成功提示
      </Alert>
      <Alert type="warning" style={{ marginTop: 8 }}>
        告警提示
      </Alert>
      <Alert type="error" style={{ marginTop: 8 }}>
        异常提示
      </Alert>
    </>
  );
}
