12 lines
142 B
JavaScript
Raw Normal View History

/**
*
* StrapiContext
*
*/
import { createContext } from 'react';
const StrapiContext = createContext();
export default StrapiContext;