From f884fa7aa599490d2a88a40452750707179eb445 Mon Sep 17 00:00:00 2001 From: Eduardo Quiros Date: Mon, 8 Aug 2022 22:07:23 -0600 Subject: [PATCH] =?UTF-8?q?crear=20componente=20de=20di=C3=A1logo=20de=20i?= =?UTF-8?q?nformaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit esto va a facilitar el manejo del caso de uso en futuras situaciones --- web-ui/web-react/src/components/generic/InfoDialog.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 web-ui/web-react/src/components/generic/InfoDialog.js diff --git a/web-ui/web-react/src/components/generic/InfoDialog.js b/web-ui/web-react/src/components/generic/InfoDialog.js new file mode 100644 index 00000000..f8434673 --- /dev/null +++ b/web-ui/web-react/src/components/generic/InfoDialog.js @@ -0,0 +1,10 @@ +import React from 'react' + +class InfoDialog extends React.Component { + constructor(props) { + super(props) + this.state = { + open: false, + } + } +}