mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-14 04:54:16 +00:00
9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
import React from "react"
|
|
import { notification } from "antd"
|
|
|
|
export default {
|
|
error: (...context) => {
|
|
notification.error(context)
|
|
},
|
|
}
|