1 'use client' 2 3 import { OrgChartView } from '@/components/org-chart/org-chart-view' 4 5 export default function OrgChartPage() { 6 return ( 7 <div className="w-full h-full"> 8 <OrgChartView /> 9 </div> 10 ) 11 }