From dc8b14b87e231a60f98bb39293a8778e3dc12928 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Mon, 8 Jun 2020 08:55:16 -0700 Subject: [PATCH] feat: Implement shape prop type --- src/components/PropList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PropList.js b/src/components/PropList.js index 58b9473d4..f939c007f 100644 --- a/src/components/PropList.js +++ b/src/components/PropList.js @@ -32,7 +32,7 @@ const PropTypeInfo = ({ type }) => { )); case 'shape': - return
Shape
; + return ; default: return null; }