In appdir, what should the type of children be?
Current getting an error saying that children is implicitly of type any. What is the recommended type to use for it? Thanks!
binding element 'children' implicitly has an 'any' type.
Solution:Jump to solution
Current getting an error saying that children is implicitly of type any. What is the recommended type to use for it? Thanks!
```tsx
// app/layout.tsx
export default function RootLayout({ children }) {...
4 Replies
ReactNode
same as before
Thanks!
you can do props with children or smth iirc
meaning in any of your component ??