summaryrefslogtreecommitdiff
path: root/src/components/StyleGuide.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/StyleGuide.js')
-rw-r--r--src/components/StyleGuide.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/components/StyleGuide.js b/src/components/StyleGuide.js
index 3fe142d..0bb3813 100644
--- a/src/components/StyleGuide.js
+++ b/src/components/StyleGuide.js
@@ -5,8 +5,9 @@ import ToggleSwitch from 'c/ToggleSwitch';
import Input from 'c/Input';
import Switch from 'c/Switch';
import Button from 'c/Button';
-import Modal from 'c/Modal';
-import APIConfig from 'c/APIConfig';
+// import Modal from 'c/Modal';
+// import APIConfig from 'c/APIConfig';
+import Proxy2 from 'c/Proxy2';
const paneStyle = {
padding: '20px 0'
@@ -37,6 +38,9 @@ class StyleGuide extends PureComponent {
return (
<div>
<Pane>
+ <Proxy2 />
+ </Pane>
+ <Pane>
<Switch />
</Pane>
<Pane>
@@ -53,9 +57,6 @@ class StyleGuide extends PureComponent {
<Pane>
<Button label="Test Latency" />
</Pane>
- <Modal isOpen={true} onRequestClose={() => {}}>
- <APIConfig />
- </Modal>
</div>
);
}