9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import PerformanceTuningView from "../views/performanceTuningView";
|
|
|
|
export default function PerformanceTuningPage() {
|
|
return (
|
|
<div className="mx-auto flex w-full max-w-7xl">
|
|
<PerformanceTuningView />
|
|
</div>
|
|
);
|
|
} |