Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuaki640 committed Dec 22, 2024
1 parent ee08922 commit 03e6096
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { FC } from "hono/jsx";
import type { PropsWithChildren } from "hono/jsx";

export const Layout: FC = ({ children }) => (
export const Layout = ({ children }: PropsWithChildren) => (
<html lang={"ja"}>
<head>
<link
Expand Down

0 comments on commit 03e6096

Please sign in to comment.