11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import React from 'react';
|
|
|
|
export default function OrganizationalHierarchyPage() {
|
|
return (
|
|
<div style={{ padding: '2rem', fontFamily: 'system-ui, sans-serif' }}>
|
|
<h1>Organizational Hierarchy</h1>
|
|
<p>Module loaded under SupportHub Web.</p>
|
|
</div>
|
|
);
|
|
}
|