JSFiddle - React, Tailwind, and code Playground

by Marcos vini

JavaScript

class Zard {
 
   constructor() {
    this.connection = null
    this.initialized = false
    this.initialize()
  }
 
 
  static initialize() {
    const zard = new Zard()
    return zard
  } 
 
}

Zard.initialize()