import { createContext } from 'react';

const IsClickableContext = createContext(false);

export default IsClickableContext;
