rsnext/examples/i18n-routing/pages/index.tsx
Steven 4466ba436b
chore(examples): use default prettier for examples/templates (#60530)
## Description
This PR ensures that the default prettier config is used for examples
and templates.

This config is compatible with `prettier@3` as well (upgrading prettier
is bigger change that can be a future PR).

## Changes
- Updated `.prettierrc.json` in root with `"trailingComma": "es5"` (will
be needed upgrading to prettier@3)
- Added `examples/.prettierrc.json` with default config (this will
change every example)
- Added `packages/create-next-app/templates/.prettierrc.json` with
default config (this will change every template)

## Related

- Fixes #54402
- Closes #54409
2024-01-11 16:01:44 -07:00

28 lines
710 B
TypeScript

import Link from "next/link";
import { useRouter } from "next/router";
import LocaleSwitcher from "../components/locale-switcher";
export default function IndexPage() {
const router = useRouter();
const { locale, locales, defaultLocale } = router;
return (
<div>
<h1>Index page</h1>
<p>Current locale: {locale}</p>
<p>Default locale: {defaultLocale}</p>
<p>Configured locales: {JSON.stringify(locales)}</p>
<LocaleSwitcher />
<Link href="/gsp">To getStaticProps page</Link>
<br />
<Link href="/gsp/first">To dynamic getStaticProps page</Link>
<br />
<Link href="/gssp">To getServerSideProps page</Link>
<br />
</div>
);
}