Skip to content

Commit

Permalink
wrap by div
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Mar 14, 2024
1 parent 43810f6 commit b67ee52
Showing 1 changed file with 48 additions and 40 deletions.
88 changes: 48 additions & 40 deletions sources/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,46 +294,54 @@ const App = () => {
<div class="row">
<fieldset>
<legend>output type</legend>
<label>
<input
type="radio"
name="output_type"
value="raw"
checked=${outputType === "raw"}
onChange=${() => setOutputType("raw")}
/>
<span>Raw Scalameta</span>
</label>
<label>
<input
type="radio"
name="output_type"
value="syntactic"
checked=${outputType === "syntactic"}
onChange=${() => setOutputType("syntactic")}
/>
<span>Scalafix SyntacticRule</span>
</label>
<label>
<input
type="radio"
name="output_type"
value="semantic"
checked=${outputType === "semantic"}
onChange=${() => setOutputType("semantic")}
/>
<span>Scalafix SemanticRule</span>
</label>
<label>
<input
type="radio"
name="output_type"
value="tokens"
checked=${outputType === "tokens"}
onChange=${() => setOutputType("tokens")}
/>
<span>Tokens</span>
</label>
<div>
<label>
<input
type="radio"
name="output_type"
value="raw"
checked=${outputType === "raw"}
onChange=${() => setOutputType("raw")}
/>
<span>Raw Scalameta</span>
</label>
</div>
<div>
<label>
<input
type="radio"
name="output_type"
value="syntactic"
checked=${outputType === "syntactic"}
onChange=${() => setOutputType("syntactic")}
/>
<span>Scalafix SyntacticRule</span>
</label>
</div>
<div>
<label>
<input
type="radio"
name="output_type"
value="semantic"
checked=${outputType === "semantic"}
onChange=${() => setOutputType("semantic")}
/>
<span>Scalafix SemanticRule</span>
</label>
</div>
<div>
<label>
<input
type="radio"
name="output_type"
value="tokens"
checked=${outputType === "tokens"}
onChange=${() => setOutputType("tokens")}
/>
<span>Tokens</span>
</label>
</div>
</fieldset>
</div>
<div class="row">
Expand Down

0 comments on commit b67ee52

Please sign in to comment.