12345678910111213141516171819202122 |
- import React from "react";
-
- const CommentContext = React.createContext();
-
-
- export function Comment(Component) {
-
- return function(props) {
-
-
- return (
- <CommentContext.Consumer>
- {app => <Component {...props} app={app} />}
- </CommentContext.Consumer>
- );
- };
- }
-
- export { CommentContext };
-
- export default Comment;
|