mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-24 02:46:27 +00:00
20 lines
315 B
TypeScript
20 lines
315 B
TypeScript
import React from 'react';
|
|
import ServiceGraph from './ServiceGraph'
|
|
|
|
const ServiceMap = () => {
|
|
|
|
return (
|
|
|
|
<div> Service Map module coming soon...
|
|
{/* <ServiceGraph /> */}
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ServiceMap;
|