Skip to content

Commit f5996d3

Browse files
authored
Remove body-based title tag (#99)
1 parent bd32cd0 commit f5996d3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

jsx-ssr/src/pages/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import type { Post } from '../index'
44
export const Page = (props: { post: Post }) => {
55
return (
66
<Layout title={props.post.title}>
7-
<title>{props.post.title}</title>
87
<main>
98
<h2>{props.post.title}</h2>
109
<p>{props.post.body}</p>

0 commit comments

Comments
 (0)