From 86578d9236ff0cd34a88e382ff1e25e54465b309 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Tue, 7 Jul 2020 17:05:16 -0700 Subject: [PATCH] chore: fix indentation on one of the code samples --- .../build-apps/add-time-picker-guide.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/markdown-pages/build-apps/add-time-picker-guide.mdx b/src/markdown-pages/build-apps/add-time-picker-guide.mdx index 82043b742..1c62b4d4f 100644 --- a/src/markdown-pages/build-apps/add-time-picker-guide.mdx +++ b/src/markdown-pages/build-apps/add-time-picker-guide.mdx @@ -161,15 +161,15 @@ Add the `PlatformStateContext` component to the end of the import statement so i Just below the current `return` insert this code for the `PlatformStateContext` component: - ```js - - {(platformState) => { - return ( - // ADD THE CURRENT RETURN CODE HERE - ) +```js + + {(platformState) => { + return ( + // ADD THE CURRENT RETURN CODE HERE + ) }} - - ``` + +```