7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
import { Alert } from "antd";
|
|
import React from "react";
|
|
|
|
export default function AlertComponent(props) {
|
|
return <Alert {...props} />;
|
|
}
|