Files
bodyshop/client/src/components/alert/alert.component.jsx
2021-05-14 15:34:05 -07:00

7 lines
139 B
JavaScript

import { Alert } from "antd";
import React from "react";
export default function AlertComponent(props) {
return <Alert {...props} />;
}