9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
|
import { createContext } from 'react';
|
||
|
|
||
|
/**
|
||
|
* Internal, exported only for usage in Framer
|
||
|
*/
|
||
|
const SwitchLayoutGroupContext = createContext({});
|
||
|
|
||
|
export { SwitchLayoutGroupContext };
|