Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 456454e

Browse files
committed
Update examples
1 parent e51fabe commit 456454e

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

examples/anchor-links/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const links = {
1313
'Dark Green': '/colors/darkgreen?text=orange',
1414
}
1515

16-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
16+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
1717
return (
1818
<main>
1919
<head>

examples/css-modules/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/hello-world-i18n/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/hello-world-isr/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/hello-world-spa/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/hello-world/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/remote-css/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { FC } from 'react'
22
import 'https://esm.sh/tailwindcss/dist/tailwind.min.css'
33

4-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
4+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
55
return (
66
<main>
77
<head>

examples/three-fiber/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { FC } from 'react'
22
import './style/index.css'
33

4-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
4+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
55
return (
66
<main>
77
<head>

examples/windicss/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

examples/with-src-dir/src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { FC } from 'react'
22

3-
export default function App({ Page, pageProps }: { Page: FC, pageProps: any }) {
3+
export default function App({ Page, pageProps }: { Page: FC, pageProps: Record<string, unknown> }) {
44
return (
55
<main>
66
<head>

0 commit comments

Comments
 (0)