import React from "react"
const GetBio = () => {
const bio = [
{
quickBio: ["Tech", "Rhythm Games"],
workedOn: "ReactJS",
learning: ["NodeJS", "ReactJS"],
lang: ["Javascript", "Typescript", "PHP"],
},
]
return (
<>
{bio.map((e, i) => (
<div key={i}>
<p>Quick Bio: {e.quickBio.join(", ")}</p>
<p>Currently Worked on: {e.workedOn}</p>
<p>Currently Learning on: {e.learning.join(", ")}</p>
<p>Programming Language: {e.lang.join(", ")}</p>
</div>
))}
</>
)
}
export default GetBio
⚽
LFC
Web Developer, Front-end Developer.
- Bandung
-
02:23
(UTC +07:00) - https://new-kangnikol.vercel.app
- in/nicholasalvis
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.