mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-19 16:36:45 +00:00
19 lines
260 B
TypeScript
19 lines
260 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import ServiceGraph from './ServiceGraph'
|
||
|
|
|
||
|
|
const ServiceMap = () => {
|
||
|
|
|
||
|
|
return (
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<ServiceGraph />
|
||
|
|
</div>
|
||
|
|
|
||
|
|
);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
export default ServiceMap;
|