Files
edr-platform/apps/edr-freight-web/backoffice/src/features/health/HealthCheck.tsx
yaschalew 84675f953e health
2026-06-25 09:45:59 +03:00

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>
}