15 lines
234 B
TypeScript
Raw Normal View History

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