From 5b827610333a4b3af5d8eae1679736876309e0ef Mon Sep 17 00:00:00 2001 From: Vadim Date: Sat, 18 Jul 2026 19:58:15 +0300 Subject: [PATCH] add task solution --- src/App.jsx | 24 ++++++++++++------------ src/components/Sum/Sum.jsx | 8 +++++++- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index dc51f769d..d3ace557e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,14 +1,14 @@ import React from 'react'; -import './App.scss'; +import { Sum } from './components/Sum/Sum'; -export const App = () => ( - <> -

Sum of 2 and 3 is 5

-

Sum of -5 and 5 is 0

-

Sum of 10 and 0 is 10

-

Sum of 0 and 5 is 5

-

Sum of 0 and 0 is 0

- {/* Replace paragraphs with Sum componets */} - {/* And remove commented lines :) */} - -); +export const App = () => { + return ( + <> + + + + + + + ); +}; diff --git a/src/components/Sum/Sum.jsx b/src/components/Sum/Sum.jsx index 381aa0422..432ac2eef 100644 --- a/src/components/Sum/Sum.jsx +++ b/src/components/Sum/Sum.jsx @@ -1 +1,7 @@ -// export const Sum = () => (); +export const Sum = ({ a = 0, b = 0 }) => { + return ( +

+ Sum of {a} and {b} is {a + b} +

+ ); +};