16 | {data.label}
17 |
18 | data.setSelected()}
21 | className="node-controls__icon"
22 | />
23 |
24 |
25 | );
26 | };
27 |
--------------------------------------------------------------------------------
/WebFormStepsVisualizer/Components/Page.tsx:
--------------------------------------------------------------------------------
1 | import * as React from 'react'
2 | import styled from 'styled-components'
3 |
4 | const PageContent = styled.div.attrs(props => ({className: props.className,}))`
5 | display: flex;
6 | flex-direction: row;
7 | flex: 1;
8 | width:80vw;
9 | max-width: 100vw;
10 | max-height: 100vh;
11 | height: 800px;
12 | white-space: normal;
13 | `
14 |
15 | export const Page = ({ children }: { children: any}) => (
16 |