import React from 'react'; import { OptionsProps } from './Options'; export default ({ options, saveOption }: OptionsProps) => { const AllowToRunState = { EVERYWHERE: true, ON_SPECIFIC_URLS: false, }; return (
Allow to run
saveOption('inject', AllowToRunState.EVERYWHERE)} />
saveOption('inject', AllowToRunState.ON_SPECIFIC_URLS) } />