Skip to content

Commit

Permalink
remove unnecessary fragment, formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
corquaid committed Apr 20, 2022
1 parent c6482bf commit a4399a0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 20 deletions.
36 changes: 17 additions & 19 deletions applications/launchpad_v2/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,25 @@ function App() {
return (
<ThemeProvider theme={{}}>
<GlobalStyle />
<>
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<p>available docker images:<br/>
{images.map(img => <em key={img}>{img}{', '}</em>)}
</p>
</header>
</div>
</>
</a>
<p>available docker images:<br/>
{images.map(img => <em key={img}>{img}{', '}</em>)}
</p>
</header>
</div>
</ThemeProvider>
)
}
Expand Down
2 changes: 1 addition & 1 deletion applications/launchpad_v2/src/styles/styles/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import colors from './colors'
import gradients from './gradients'
import typography from './typography'
import typography from './typography'

const styles = {
colors,
Expand Down

0 comments on commit a4399a0

Please sign in to comment.