14 lines
232 B
TypeScript
14 lines
232 B
TypeScript
'use client';
|
|
|
|
/**
|
|
* Swift Command Center Page
|
|
*
|
|
* Main entry point for Swift - the Contextual UI EPD.
|
|
*/
|
|
|
|
import { CommandCenter } from '@/components/swift';
|
|
|
|
export default function SwiftPage() {
|
|
return <CommandCenter />;
|
|
}
|