Browse Source

Fixed `children` Flow type for layout template

main
Brian Vaughn 7 years ago
committed by GitHub
parent
commit
2a165e7e88
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/layouts/index.js

2
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,
};

Loading…
Cancel
Save