Caution
Life is like an anime—full of plot twists, power-ups, and late-night debugging!
import React from "react";
const Ben 10 = () => {
const aboutMe = {
realName: "Hamza",
pronouns: "Bot | Nub ",
organization: "PythonBotz' Group",
interests: ["Open Source", "Python", "Web Dev"],
myBelief:
"If you want to go fast, go alone. If you want to go far, go together.",
};
return (
<div>
<h2>Hello there! I am {aboutMe.realName}.</h2>
<p>My pronouns are {aboutMe.pronouns}</p>
<p>I work for {aboutMe.organization}</p>
<p>My interest lies in: {aboutMe.askMeAbout.join(", ")}</p>
<p>I live by {aboutMe.myBelief}</p>
</div>
);
};
export default Ben 10;
![]() |
---|