updated form fields and application logic;
This commit is contained in:
8
src/components/BlockingOverlay/index.js
Normal file
8
src/components/BlockingOverlay/index.js
Normal file
@@ -0,0 +1,8 @@
|
||||
import React from 'react';
|
||||
|
||||
const BlockingOverlay = ({ shouldDisplay = false }) => {
|
||||
return shouldDisplay
|
||||
? <div className="blockingOverlay"></div> : null;
|
||||
}
|
||||
|
||||
export default BlockingOverlay;
|
||||
Reference in New Issue
Block a user