https://github.com/sngminn/me/blob/02c27c75344f94e12979b46bbcff3163d15d82cd/src/components/layout/PostLayout.tsx#L7 ```tsx interface PostLayoutProps { children: ReactNode; } // TODO: 추후 삭제 고려 export function PostLayout({ children }: PostLayoutProps) { return ( <div className="flex gap-6 w-full"> ```