Skip to content

Commit f0e95f4

Browse files
authored
fix: page component should be in FC type
1 parent b7f2935 commit f0e95f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/%5Fparams/page.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { Code, Container, Heading, Link, Section } from "@radix-ui/themes";
22
import * as DataList from "@radix-ui/themes/components/data-list";
33
import { type Metadata } from "next";
4+
import { type FC } from "react";
45

56
import { routes, siteUrl } from "@/constants/site-config";
67

78
import styles from "./page.module.css";
89

9-
const ParamsPage = () => (
10+
const ParamsPage: FC = () => (
1011
<Container asChild>
1112
<main>
1213
<Section>

0 commit comments

Comments
 (0)