import React from 'react'; export class Foo { private x: number = 123; static y: string = 'haha'; render({ username }: { username: string }) { return (

Welcome {username}, you are {this.x}

); } } console.log(Foo.y);