diff options
author | Matthew Shao <me@matshao.com> | 2017-06-30 20:46:02 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-06-30 20:46:02 +0800 |
commit | 7baf3069b169e8196e5d389e655a3a187b4329d9 (patch) | |
tree | 131b6b04894d05ed1b19a6cc45ea72ac728b41e9 /web/src/js/components/Modal/ModalLayout.jsx | |
parent | 7a50301af322667faff8adc1d5990957df9dc4bb (diff) | |
download | mitmproxy-7baf3069b169e8196e5d389e655a3a187b4329d9.tar.gz mitmproxy-7baf3069b169e8196e5d389e655a3a187b4329d9.tar.bz2 mitmproxy-7baf3069b169e8196e5d389e655a3a187b4329d9.zip |
[web] Update the Structure of Modal component.
Diffstat (limited to 'web/src/js/components/Modal/ModalLayout.jsx')
-rw-r--r-- | web/src/js/components/Modal/ModalLayout.jsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/src/js/components/Modal/ModalLayout.jsx b/web/src/js/components/Modal/ModalLayout.jsx new file mode 100644 index 00000000..cf357b2b --- /dev/null +++ b/web/src/js/components/Modal/ModalLayout.jsx @@ -0,0 +1,16 @@ +import React from 'react' + +export default function ModalLayout ({ children }) { + return ( + <div> + <div className="modal-backdrop fade in"></div> + <div className="modal modal-visible" id="optionsModal" tabIndex="-1" role="dialog" aria-labelledby="options"> + <div className="modal-dialog modal-lg" role="document"> + <div className="modal-content"> + {children} + </div> + </div> + </div> + </div> + ) +} |