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, + } + } +}