FPSMS-frontend
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

page.tsx 151 B

10 ay önce
10 ay önce
1234567
  1. import { permanentRedirect } from "next/navigation";
  2. const Home: React.FC = async () => {
  3. permanentRedirect("/dashboard");
  4. };
  5. export default Home;