305c87bf2288823fb4ab1069528fba4718c43120
[clamp.git] / ui-react / src / components / dialogs / Loop / __snapshots__ / CreateLoopModal.test.js.snap
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`Verify CreateLoopModal Test the render method 1`] = `
4 <Styled(Bootstrap(Modal))
5   backdrop="static"
6   keyboard={false}
7   onHide={[Function]}
8   show={true}
9   size="xl"
10 >
11   <ModalHeader
12     closeButton={true}
13     closeLabel="Close"
14   >
15     <ModalTitle>
16       Create Model
17     </ModalTitle>
18   </ModalHeader>
19   <ModalBody>
20     <FormGroup
21       as={
22         Object {
23           "$$typeof": Symbol(react.forward_ref),
24           "defaultProps": Object {
25             "noGutters": false,
26           },
27           "render": [Function],
28         }
29       }
30       controlId="formPlaintextEmail"
31     >
32       <FormLabel
33         column={true}
34         sm="2"
35         srOnly={false}
36       >
37         Template Name:
38       </FormLabel>
39       <Col
40         sm="10"
41       >
42         <StateManager
43           defaultInputValue=""
44           defaultMenuIsOpen={false}
45           defaultValue={null}
46           onChange={[Function]}
47           options={Array []}
48         />
49       </Col>
50     </FormGroup>
51     <FormGroup
52       as={
53         Object {
54           "$$typeof": Symbol(react.forward_ref),
55           "defaultProps": Object {
56             "noGutters": false,
57           },
58           "render": [Function],
59         }
60       }
61       controlId="formSvgPreview"
62       style={
63         Object {
64           "alignItems": "center",
65         }
66       }
67     >
68       <FormLabel
69         column={true}
70         sm="2"
71         srOnly={false}
72       >
73         Model Preview:
74       </FormLabel>
75       <Col
76         sm="10"
77       >
78         <styled.svg
79           dangerouslySetInnerHTML={
80             Object {
81               "__html": "",
82             }
83           }
84           value=""
85         />
86       </Col>
87     </FormGroup>
88     <FormGroup
89       as={
90         Object {
91           "$$typeof": Symbol(react.forward_ref),
92           "defaultProps": Object {
93             "noGutters": false,
94           },
95           "render": [Function],
96         }
97       }
98       controlId="formPlaintextEmail"
99     >
100       <FormLabel
101         column={true}
102         sm="2"
103         srOnly={false}
104       >
105         Model Name:
106       </FormLabel>
107       <input
108         onChange={[Function]}
109         style={
110           Object {
111             "marginLeft": "1em",
112             "width": "50%",
113           }
114         }
115         type="text"
116         value=""
117       />
118     </FormGroup>
119   </ModalBody>
120   <ModalFooter>
121     <Button
122       active={false}
123       disabled={false}
124       onClick={[Function]}
125       type="null"
126       variant="secondary"
127     >
128       Cancel
129     </Button>
130     <Button
131       active={false}
132       disabled={false}
133       onClick={[Function]}
134       type="submit"
135       variant="primary"
136     >
137       Create
138     </Button>
139   </ModalFooter>
140 </Styled(Bootstrap(Modal))>
141 `;