diff --git a/src/context/browserActions.tsx b/src/context/browserActions.tsx new file mode 100644 index 00000000..46d2d936 --- /dev/null +++ b/src/context/browserActions.tsx @@ -0,0 +1,10 @@ +import React, { createContext, useState, useContext, ReactNode } from 'react'; + +interface ActionContextType { + getText: boolean; + getScreenshot: boolean; + handleGetText: () => void; + handleGetScreenshot: () => void; + resetActions: () => void; +} +