mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-03-15 12:23:57 +03:00
18 lines
568 B
TypeScript
18 lines
568 B
TypeScript
![]() |
import React from "react";
|
||
|
import { useAppState } from "../001_provider/001_AppStateProvider";
|
||
|
import { LicenseDialog } from "./202_LicenseDialog";
|
||
|
|
||
|
export const Dialog = () => {
|
||
|
const { frontendManagerState } = useAppState();
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
{frontendManagerState.stateControls.showLicenseCheckbox.trigger}
|
||
|
<div className="dialog-container" id="dialog">
|
||
|
{frontendManagerState.stateControls.showLicenseCheckbox.trigger}
|
||
|
<LicenseDialog></LicenseDialog>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|