1 import React from "react";
2
3 const Person = () => {
4 const name = "Tomas Stveracek";
5 const age = new Date().getFullYear() - 1995;
6 const skills = ["HTML5", "CSS3", "SASS", "TailwindCSS", "JavaScript", "React", "Node.js"];
7 return (
8 <div>
9 <h1>My name is {name}.</h1>
10 <p>I am {age} years old.</p>
11 <p>Skills: {skills.join(", ")}.</p>
12 </div>
13 );
14 };
15 export default Person;