import * as React from "react"; import { createRoot } from "react-dom/client"; import "./css/App.css" import { useMemo, } from "react"; import { useMicrophoneOptions } from "./100_options_microphone"; const container = document.getElementById("app")!; const root = createRoot(container); const App = () => { const { voiceChangerSetting } = useMicrophoneOptions() const onClearSettingClicked = async () => { //@ts-ignore await chrome.storage.local.clear(); //@ts-ignore await chrome.storage.sync.clear(); location.reload() } const clearRow = useMemo(() => { return ( <>