Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(component): move app components in correct order again
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasse Küchler committed Dec 8, 2017
1 parent 3cebb70 commit ddbf346
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/component/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const ElementPane = styledComponents.div`
flex-grow: 0;
flex-shrink: 1;
flex-basis: 350px;
order: 2;
border: 1px solid #ccc;
`;

Expand Down Expand Up @@ -53,18 +52,19 @@ class App extends React.Component<AppProps> {
</PatternsPane>
</Layout>

<ElementPane>
<ElementList store={this.props.store} />
</ElementPane>

<IconRegistry names={IconName} />

<PreviewPane
dangerouslySetInnerHTML={{
__html:
'<webview style="height: 100%;" src="./preview.html" partition="electron" nodeintegration />'
}}
/>

<ElementPane>
<ElementList store={this.props.store} />
</ElementPane>

<IconRegistry names={IconName} />

<DevTools />
</Layout>
);
Expand Down

0 comments on commit ddbf346

Please sign in to comment.