Files
video-gen/video-gen-admin/node_modules/@rc-component/notification/es/NotificationProvider.js
T
2026-05-25 17:08:18 +08:00

13 lines
330 B
JavaScript

import React from 'react';
export const NotificationContext = /*#__PURE__*/React.createContext({});
const NotificationProvider = ({
children,
classNames
}) => {
return /*#__PURE__*/React.createElement(NotificationContext.Provider, {
value: {
classNames
}
}, children);
};
export default NotificationProvider;