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