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, clearSetting } = useMicrophoneOptions() const onClearSettingClicked = async () => { clearSetting() location.reload() } const clearRow = useMemo(() => { return ( <>
clear setting
) }, []) return (
Voice Changer Setting for v.1.5.x
github
manual
{clearRow} {voiceChangerSetting}
) } root.render( );