Skip to content

Commit

Permalink
fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorAfk committed Nov 19, 2023
1 parent ddf5ed7 commit 8447543
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,10 @@ import { Sum } from './components/Sum/Sum';

export const App = () => (
<>
<Sum
a={2}
b={3}
/>
<Sum
a={-5}
b={5}
/>
<Sum
a={10}
/>
<Sum
b={5}
/>
<Sum a={2} b={3} />
<Sum a={-5} b={5} />
<Sum a={10} />
<Sum b={5} />
<Sum />
</>
);

0 comments on commit 8447543

Please sign in to comment.