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

+ +
+ ) +}