Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
nealus committed May 15, 2021
1 parent be24478 commit 9691e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/demo/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,9 @@ class App extends React.Component<any, { layoutFile: string | null, model: FlexL
<option value="180%">Size 180%</option>
<option value="200%">Size 200%</option>
</select>
<select style={{ marginLeft: 5 }} onChange={this.onThemeChange}>
<select style={{ marginLeft: 5 }} defaultValue="gray" onChange={this.onThemeChange}>
<option value="light">Light</option>
<option value="gray" selected>Gray</option>
<option value="gray">Gray</option>
<option value="dark">Dark</option>
</select>
<button style={{ marginLeft: 5 }} onClick={this.onShowLayoutClick}>Show Layout JSON in Console</button>
Expand Down

0 comments on commit 9691e6c

Please sign in to comment.