20 lines
315 B
TypeScript
Raw Normal View History

2021-01-03 18:15:44 +05:30
import React from 'react';
import ServiceGraph from './ServiceGraph'
const ServiceMap = () => {
return (
2021-01-10 12:05:09 +05:30
<div> Service Map module coming soon...
{/* <ServiceGraph /> */}
2021-01-03 18:15:44 +05:30
</div>
2021-01-10 12:05:09 +05:30
2021-01-03 18:15:44 +05:30
);
}
export default ServiceMap;