mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 05:25:41 +00:00
11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
export const HealthCheck = () => {
|
|
const url1 = import.meta.env.VITE_API_URL?? "undefined";
|
|
const url2 = import.meta.env.VITE_BASE_API_URL?? "undefined";
|
|
const url3 = import.meta.env.VITE_USER_MANAGEMENT_BASE?? "undefined";
|
|
|
|
return <div>
|
|
<h2>-----------{url1}</h2>
|
|
<h2>-----------{url2}</h2>
|
|
<h2>-----------{url3}</h2>
|
|
</div>
|
|
} |