6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
const NotificationsContext = React.createContext(null);
|
||
|
|
|
||
|
|
export default NotificationsContext;
|