00908900c8
- Created BackToMC component - Added to all 27 mission control pages - Each page now has '← Back to Mission Control' button at top - Also pushed beta to develop to sync branches
16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
"use client";
|
|
|
|
import BackToMC from "@/components/mission-control/BackToMC";
|
|
import ExecutionLogsPanel from "@/components/mission-control/ExecutionLogsPanel";
|
|
|
|
export default function ExecutionLogsPage() {
|
|
return (
|
|
<>
|
|
<BackToMC />
|
|
<div className="p-6">
|
|
<ExecutionLogsPanel />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|