12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
const ManageWebServices = () => {
|
|
return (
|
|
<div>
|
|
<div className="container mx-auto p-5">
|
|
<h1 className="text-xl font-medium leading-none text-gray-900">Manage Web Services</h1>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ManageWebServices;
|