Skip to content

Commit

Permalink
fix: page component should be in FC type
Browse files Browse the repository at this point in the history
  • Loading branch information
mwskwong authored Feb 4, 2025
1 parent b7f2935 commit f0e95f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/%5Fparams/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { Code, Container, Heading, Link, Section } from "@radix-ui/themes";
import * as DataList from "@radix-ui/themes/components/data-list";
import { type Metadata } from "next";
import { type FC } from "react";

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

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

const ParamsPage = () => (
const ParamsPage: FC = () => (
<Container asChild>
<main>
<Section>
Expand Down

0 comments on commit f0e95f4

Please sign in to comment.