Skip to content

Commit

Permalink
Consistent bracket spacing in main example (#1517)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #1517

Accidentally using a combination of prettier default vs with `--no-bracket-spacing`

Reviewed By: yungsters

Differential Revision: D52162274

fbshipit-source-id: a0e629717060c17b63fa6144d775a590258580ac
  • Loading branch information
NickGerleman authored and facebook-github-bot committed Dec 18, 2023
1 parent 3f3b909 commit 7697be5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions website-next/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ function HeroSection() {

const playgroundCode = `
<Layout config={{useWebDefaults: false}}>
<Node style={{ width: 250, height: 475, padding: 10 }}>
<Node style={{ flex: 1, rowGap: 10}}>
<Node style={{ height: 60 }} />
<Node style={{ flex: 1, marginInline: 10 }} />
<Node style={{ flex: 2, marginInline: 10 }} />
<Node style={{width: 250, height: 475, padding: 10}}>
<Node style={{flex: 1, rowGap: 10}}>
<Node style={{height: 60}} />
<Node style={{flex: 1, marginInline: 10}} />
<Node style={{flex: 2, marginInline: 10}} />
<Node
style={{
position: "absolute",
Expand All @@ -54,10 +54,10 @@ const playgroundCode = `
justifyContent: "space-around",
}}
>
<Node style={{ height: 40, width: 40 }} />
<Node style={{ height: 40, width: 40 }} />
<Node style={{ height: 40, width: 40 }} />
<Node style={{ height: 40, width: 40 }} />
<Node style={{height: 40, width: 40}} />
<Node style={{height: 40, width: 40}} />
<Node style={{height: 40, width: 40}} />
<Node style={{height: 40, width: 40}} />
</Node>
</Node>
</Node>
Expand Down

0 comments on commit 7697be5

Please sign in to comment.