17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
import React from 'react';
|
|
|
|
const PerformanceKPIsPage: React.FC = () => {
|
|
return (
|
|
<div className="p-6 max-w-7xl mx-auto">
|
|
<div className="mb-8">
|
|
<h1 className="text-2xl font-bold text-gray-900">KPIs de Rendimiento</h1>
|
|
</div>
|
|
|
|
<div className="bg-white rounded-xl shadow-sm border border-gray-200 p-8 text-center">
|
|
<p className="text-gray-500">KPIs de rendimiento en desarrollo</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PerformanceKPIsPage; |