From d8e18e46330becb72d09f8394838d7532ce8dc08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9COthman?= <“othmanosx@gmail.com”> Date: Fri, 29 Jan 2021 18:24:38 +0300 Subject: [PATCH] my first commit --- src/App.js | 4 +++- src/MyInfo.jsx | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 src/MyInfo.jsx diff --git a/src/App.js b/src/App.js index 7c96152..ade17eb 100644 --- a/src/App.js +++ b/src/App.js @@ -1,9 +1,11 @@ import React from 'react'; +import MyInfo from './MyInfo'; function App() { return (
-

Hello World!!

+

Hello World!

+
); } diff --git a/src/MyInfo.jsx b/src/MyInfo.jsx new file mode 100644 index 0000000..d2a1eb3 --- /dev/null +++ b/src/MyInfo.jsx @@ -0,0 +1,15 @@ +import React from 'react' + +export default function MyInfo() { + return ( +
+

My name is Othman!

+

A Mechanical Engineer and Web Developer

+ +
+ ) +}