Browse Source
Fixed `children` Flow type for layout template
main
Brian Vaughn
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/layouts/index.js
|
|
@ -25,7 +25,7 @@ import 'css/reset.css'; |
|
|
|
import 'css/algolia.css'; |
|
|
|
|
|
|
|
type Props = { |
|
|
|
children: any, // I don't think this is a Node type
|
|
|
|
children: Function, |
|
|
|
location: Location, |
|
|
|
}; |
|
|
|
|
|
|
|