UNPKG

@kiwicom/smart-faq

Version:

14 lines (9 loc) 200 B
// @flow import * as React from 'react'; type SSRContext = {| data: ?Object, |}; const ssrContext: React.Context<SSRContext> = React.createContext({ data: null, }); export default ssrContext;