This repository has been archived on 2026-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RECS-WEB-MODLE-REACT/app/page.tsx
2026-08-07 14:24:04 +08:00

18 lines
501 B
TypeScript

import Link from "next/link";
import AdminApp from "./AdminApp";
import styles from "./page.module.css";
// AdminApp owns the localStorage-backed template interactions.
export default function Home() {
return (
<>
<AdminApp />
<Link className={styles.approvalLauncher} href="/approval">
<span className={styles.launcherIcon}></span>
<span><strong></strong><small></small></span>
<b></b>
</Link>
</>
);
}