From 9ee10392e12a6d132f7e725377569ea0e5f7ac23 Mon Sep 17 00:00:00 2001 From: Fabio Milano Date: Wed, 7 Nov 2018 05:17:32 -0800 Subject: [PATCH] Fixed missing code block container Summary: A missing code block closing back tick cause the documentation's layout to be incorrect. Reviewed By: jknoxville Differential Revision: D12948908 fbshipit-source-id: 8e9496d2bac81a49b39aed3a2c97ff6a20c71241 --- docs/styling-components.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/styling-components.md b/docs/styling-components.md index c4c11ae35..03e46ee14 100644 --- a/docs/styling-components.md +++ b/docs/styling-components.md @@ -20,6 +20,7 @@ const MyView = styled('div')({ const MyText = styled('span')({ ... }); const MyImage = styled('img')({ ... }); const MyInput = styled('input')({ ... }); +``` ## Extending Flipper Components