mirror of
https://github.com/strapi/strapi.git
synced 2025-08-15 04:08:04 +00:00
12 lines
142 B
JavaScript
12 lines
142 B
JavaScript
/**
|
|
*
|
|
* StrapiContext
|
|
*
|
|
*/
|
|
|
|
import { createContext } from 'react';
|
|
|
|
const StrapiContext = createContext();
|
|
|
|
export default StrapiContext;
|