We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dba2e5 commit b9f4ed4Copy full SHA for b9f4ed4
src/containers/MainContainer.jsx
@@ -132,9 +132,12 @@ class MainContainer extends Component {
132
/>
133
</div>
134
135
- <p>{directParents ? `Used in: ${directParents}` : 'Not used in any other component'}</p>
136
- <button onClick={deleteChild}>delete focused child</button>
+ <span>{directParents ? `Used in: ${directParents}` : 'Not used in any other component'}</span>
+ <button
137
+ style= {{width: '200px', display: 'inline-block'}}
138
+ onClick={deleteChild}>delete focused child</button>
139
<button
140
+ style= {{width: '200px',display: 'inline-block'}}
141
onClick={() => deleteComponent({ componentId: focusComponent.id, stateComponents })}
142
>
143
delete focused components
0 commit comments