0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-01 08:42:45 +00:00

remove comments

This commit is contained in:
Víctor Losada Hernández
2024-10-10 02:09:11 +02:00
parent 656c9399ef
commit f8c995e59e

View File

@@ -1,6 +1,6 @@
// Dialog box, for popups and modal blocking messages
import React from "react"; // Correct the import statement
const { useRef, useEffect } = React; // Use React instead of react
import React from "react";
const { useRef, useEffect } = React;
function Dialog({ dismissKeys, closeText = 'Close', blocking = false, ...rest }) {
const dialogRef = useRef(null);