Skip to content

Commit

Permalink
Change logos to work with CSB
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Jul 7, 2022
1 parent 09f50ed commit fc1b011
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
File renamed without changes
17 changes: 10 additions & 7 deletions examples/counter-ts/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import React from 'react';
import logo from './logo.svg';
import { Counter } from './features/counter/Counter';
import './App.css';
import React from 'react'
import { Counter } from './features/counter/Counter'
import './App.css'

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<img
src={`${process.env.PUBLIC_URL}/logo.svg`}
className="App-logo"
alt="logo"
/>
<Counter />
<p>
Edit <code>src/App.tsx</code> and save to reload.
Expand Down Expand Up @@ -52,7 +55,7 @@ function App() {
</span>
</header>
</div>
);
)
}

export default App;
export default App
File renamed without changes
17 changes: 10 additions & 7 deletions examples/counter/src/App.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import React from 'react';
import logo from './logo.svg';
import { Counter } from './features/counter/Counter';
import './App.css';
import React from 'react'
import { Counter } from './features/counter/Counter'
import './App.css'

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<img
src={`${process.env.PUBLIC_URL}/logo.svg`}
className="App-logo"
alt="logo"
/>
<Counter />
<p>
Edit <code>src/App.js</code> and save to reload.
Expand Down Expand Up @@ -52,7 +55,7 @@ function App() {
</span>
</header>
</div>
);
)
}

export default App;
export default App

0 comments on commit fc1b011

Please sign in to comment.