このコミットが含まれているのは:
2025-08-23 18:40:03 +09:00
コミット 7e2d94fdc0
15個のファイルの変更80行の追加57行の削除
+4 -2
ファイルの表示
@@ -1,9 +1,11 @@
import React from 'react'
import type { FC } from 'react'
type Props = { children: React.ReactNode }
export default ({ children }: Props) => (
export default (({ children }: Props) => (
<div className="max-w-xl mx-auto p-4 space-y-4">
{children}
</div>)
</div>)) satisfies FC<Props>