in src/main/resources/static/components/session/AxtSession.tsx [61:71]
constructor(props: Readonly<AxtSessionProps> | AxtSessionProps) {
super(props);
const search = new URLSearchParams(window.location.search)
this.productId = search.get("productId") ?? "ecs"
this.regionId = search.get("regionId") ?? ""
this.instanceId = search.get("instanceId") ?? ""
this.state = {
status: "prepare",
instance: undefined
}
}