From 2a165e7e8896728c20a275b37c8eb45ec246ff23 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Wed, 29 Nov 2017 13:21:57 -0800 Subject: [PATCH] Fixed `children` Flow type for layout template --- src/layouts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/index.js b/src/layouts/index.js index 7cb6abef..3630653b 100644 --- a/src/layouts/index.js +++ b/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, };