fix: add line wrapping to editor

This commit is contained in:
Stevan Freeborn
2023-09-11 21:29:22 -05:00
parent 48e14d41b2
commit 3c71d1f69b
3 changed files with 4 additions and 4 deletions
+3 -1
View File
@@ -1 +1,3 @@
export default function PostPage({ params }: { params: { id: string } }) {}
export default function PostPage({ params }: { params: { id: string } }) {
return <h1>{params.id}</h1>;
}