Skip to content

Commit

Permalink
Refactor Secretary Editor and Enhance UI for Improved User Experience…
Browse files Browse the repository at this point in the history
… and Functionality
  • Loading branch information
SkywalkerJi committed Dec 26, 2024
1 parent cd7bbab commit 1de20b3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/kc-development-tools/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'use client';

import { useEffect } from 'react';
import { useRouter } from 'next/navigation';

export default function KcDevTools() {
const router = useRouter();

useEffect(() => {
router.push('simulator');
}, [router]);

return (
<div className="min-h-screen flex items-center justify-center">
<div className="text-gray-600 dark:text-gray-400">加载中...</div>
</div>
);
}

0 comments on commit 1de20b3

Please sign in to comment.