Canvas: Prettier

Change-Id: I620dde109df0f29f0c85c6fe150e347d2c32a03e
diff --git a/apps/canvas/front/src/components/handle-port-out.tsx b/apps/canvas/front/src/components/handle-port-out.tsx
index c8cbd7a..0e7307d 100644
--- a/apps/canvas/front/src/components/handle-port-out.tsx
+++ b/apps/canvas/front/src/components/handle-port-out.tsx
@@ -3,24 +3,17 @@
 import { v4 as uuidv4 } from "uuid";
 
 export class PortOut {
-    public readonly id: string;
-    // private name: string;
-    // private value: number;
+	public readonly id: string;
+	// private name: string;
+	// private value: number;
 
-    constructor() {
-        this.id = uuidv4();
-        // this.name = "";
-        // this.value = 0;
-    }
+	constructor() {
+		this.id = uuidv4();
+		// this.name = "";
+		// this.value = 0;
+	}
 
-    public handle(): ReactElement {
-        return (
-            <Handle 
-                id={this.id} 
-                type={"source"} 
-                position={Position.Top}
-            />
-        )
-    }
+	public handle(): ReactElement {
+		return <Handle id={this.id} type={"source"} position={Position.Top} />;
+	}
 }
-