1 import { useEffect, useState } from 'react';
2
3
4 @Portfolio
5 class Portfolio {
6 constructor() {
7 this.name = "Amir Shetaia";
8 this.status = "under construction";
9 this.progress = 0.75;
10 this.technologies = ["React", "Node.js", "Three.js", "WebGL"];
11 }
12
13 async launch() {
14 await this.finalize();
15
16 }
17 }