import { useCallback } from 'react'; import { Button } from '~components/Button'; import { Icon } from '~components/Icon'; import './SetupScreen.css'; export function SetupScreen() { const open = useCallback(() => { const url = (chrome || browser).runtime.getURL(`/tabs/PermissionRequest.html`); (chrome || browser).tabs.create({ url }); window.close(); }, []); return (

Let's get this set up!

To get started, we need to setup some things first. Click the button below to continue.

); }